{% extends "base.html" %} {% block title %}{{ config.title }}{% endblock title %} {% block content %}

{{ config.extra.hero_title | safe }}

{{ config.extra.hero_subtitle }}

{%- if config.extra.hero_cta %} {{ config.extra.hero_cta }} {%- endif %}
{%- if config.extra.logo_image %}
{{ config.title }}
{%- endif %}
{%- if config.extra.services %}

{{ config.extra.services_heading | default(value="Our Services") }}

{%- if config.extra.services_subheading %}

{{ config.extra.services_subheading }}

{%- endif %}
{%- for item in config.extra.services %}
{%- if item.icon == "star" %} {%- elif item.icon == "shield" %} {%- elif item.icon == "bolt" %} {%- elif item.icon == "heart" %} {%- elif item.icon == "check" %} {%- elif item.icon == "globe" %} {%- else %} {%- endif %}

{{ item.name }}

{{ item.description }}

{%- if item.price %} {{ item.price }} {%- endif %}
{%- endfor %}
{%- endif %} {%- if config.extra.steps %}

{{ config.extra.steps_heading | default(value="How It Works") }}

{%- if config.extra.steps_subheading %}

{{ config.extra.steps_subheading }}

{%- endif %}
    {%- for step in config.extra.steps %}
  1. {{ step.title }}

    {{ step.description }}

  2. {%- endfor %}
{%- endif %} {%- if config.extra.about_paragraphs %}

{{ config.extra.about_heading | default(value="About Us") }}

{%- if config.extra.logo_image %}
{{ config.title }}
{%- endif %}
{%- for paragraph in config.extra.about_paragraphs %}

{{ paragraph }}

{%- endfor %}
{%- endif %}

{{ config.extra.contact_heading | default(value="Contact Us") }}

{%- if config.extra.contact_subheading %}

{{ config.extra.contact_subheading }}

{%- endif %}
{%- if config.extra.contact_email %} {{ config.extra.contact_email }} {%- endif %} {%- if config.extra.contact_phone %} {{ config.extra.contact_phone }} {%- endif %} {%- if config.extra.location %}
{{ config.extra.location }}
{%- endif %}
{%- if section.content %}
{{ section.content | safe }}
{%- endif %} {% endblock content %} {% block extra_body %} {% endblock extra_body %}