{% for item in include.columns %}
{% if item.title_html %}

{{ item.title_html }}

{% endif %}
{% if item.text_style == "bullets" %}
    {% for bullet in item.bullet_items %}
  • {% if bullet.heading %}

    {{ bullet.heading }}

    {% endif %}

    {{ bullet.text }}

  • {% endfor %}
{% else %}
{{ item.description_html }}
{% endif %}
{% endfor %}