{% if sections.faq.badge %} {{ sections.faq.badge }} {% endif %}

{{ sections.faq.title }}

{{ sections.faq.subtitle }}

{% if sections.faq.layout == 'grid' %}
{% for item in sections.faq.items %}

{{ item.question }}

{{ item.answer }}

{% endfor %}
{% elif sections.faq.layout == 'categories' %}
{% for category in sections.faq.categories %}

{{ category.title }}

{% for item in category.items %}

{{ item.question }}

{{ item.answer }}

{% endfor %}
{% endfor %}
{% else %}
{% for item in sections.faq.items %}
{% endfor %}
{% endif %} {% if sections.faq.additional_help %}

{{ sections.faq.additional_help.title }}

{{ sections.faq.additional_help.description }}

{% for button in sections.faq.additional_help.buttons %} {% if button.icon %} {% endif %} {{ button.label }} {% endfor %}
{% endif %} {% if sections.faq.contact_info %}
{% for contact in sections.faq.contact_info %}

{{ contact.title }}

{{ contact.value }}

{% if contact.link_url and contact.link_text %} {{ contact.link_text }} {% endif %}
{% endfor %}
{% endif %}