{% extends 'services/base.html' %} {% block content %}

Inquiry Received Successfully!

Thank you for your interest in {{ service.name }}! We have received your inquiry and our team will contact you shortly. A confirmation email will be sent to your provided email address.

{% if service.image %} {{ service.name }} {% endif %}

{{ service.name }}

{{ service.category }}

{% if service.description %}

{{ service.description|safe }}

{% endif %} {% if service.pricing_plans %}
{% for plan in service.pricing_plans %}

{{ plan.name }}

    {% for price in plan.prices %}
  • {{ price.amount }} {{ price.currency }} per {{ price.interval }}
  • {% endfor %}
{% endfor %}
{% endif %}
{% endblock %}