<section class="why-section section">

    <div class="container">

        <div class="section-header text-center">

            <span class="section-subtitle">

                WHY CHOOSE KOTTAL AYURVEDA?

            </span>

            <h2 class="section-title">

                Trusted Wellness, Naturally

            </h2>

        </div>

        <div class="row g-4">

            {% for item in features %}

            <div class="col-lg-3 col-md-6">

                <div class="why-card">

                    <div class="why-icon">

                        <i class="fa-solid fa-circle-check"></i>

                    </div>

                    <h3>

                        {{ item.title }}

                    </h3>

                    <p>

                        {{ item.description }}

                    </p>

                </div>

            </div>

            {% endfor %}

        </div>

    </div>

</section>