How can I create a two-column FAQ accordion section in Dawn theme?

I created FAQ accodion section using the below tutorial.

https://scrowp.com/community/dawn-theme/how-to-add-faq-section-to-dawn-theme/

But I need to make it two column like the below image. I tried float:left and width 50%. But its not working properly.

Hi @onceupon , can you share your store url?

url sent to your mail. Thanks

@onceupon , go to base.css and add the following code :

.faq-wrapper--template--19871714410831__e1413d4a-0fe7-4593-9897-7d90b8876bf7 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
}

Thank you