{% if features %}

<section class="why-section py-5">

    <div class="container">

        <div class="row justify-content-center mb-5">

            <div class="col-lg-8 text-center">

                <span class="section-subtitle">
                    Why Choose Us
                </span>

                <h2 class="section-title">
                    Why Choose Dr. Franklin Herbal Remedies?
                </h2>

                <p class="section-description">
                    We combine the wisdom of Ayurveda with carefully selected herbal ingredients to provide safe, effective and trusted wellness solutions for you and your family.
                </p>

            </div>

        </div>

        <div class="row g-4">

            {% for feature in features %}

            <div class="col-6 col-lg-4">

                <div class="why-card">

                    <div class="why-icon">
                        <i class="bi {{ feature.icon }}"></i>
                    </div>

                    <h4>
                        {{ feature.title }}
                    </h4>

                    <p>
                        {{ feature.description }}
                    </p>

                </div>

            </div>

            {% endfor %}

        </div>

    </div>

</section>

{% endif %}