How to Create Columns with Gravity Forms to Display Services?

I use Gravity Forms to design the pages of my website.

I have now a new department to add to my home page, and I don’t know how. I tried to make 2 columns: one for “SUBVENTIONS & CRÉDITS D’IMPÔT” and one for “ACCÉLÉRATEUR DE CROISSANCE.”

http://dastousgroupeconseil.com/fr/test-page-daccueil-valo/
However, the result is not perfect, but what disturbs me the most if that it’s not responsive.

Is there a way that I can create 2 separate columns on my home page?
For example, is there an add-on available?

Thanks,
Charles

Hmmm, try using a CSS display:grid;

display: grid;
grid-template-columns: 100px 200px 500px 150px 100px;

If that doesn’t work try using HTML blocks to add in a <table><tr><td> in one, and the </td></tr> in others. But I’d try the CSS route first.