body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
}

.heritage-section {
    background: #f6f7f5;
    margin-top: 5%;
}

/* back link */
.back-link {
    font-size: 12px;
    letter-spacing: 1px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: #0f3d2e;
}

/* headings */
.section-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #d48c2f;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #0f3d2e;
}

.section-title span {
    font-style: italic;
    color: #6b8f82;
}

/* mini title */
.mini-title {
    font-weight: 600;
    color: #c67a1b;
    margin-bottom: 15px;
}

.mini-title.green {
    color: #2e7d5b;
}

/* text */
.section-text {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.8;
}

/* image card */
.image-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    display: inline-block;
    background: #fff;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* responsive */
@media (max-width: 991px) {
    .heritage-section{
        margin-top: 15%;
    }
    .section-title {
        font-size: 32px;
    }

    .image-card {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 26px;
    }

    .section-text {
        font-size: 13px;
    }
}

:root {
    --brand-green: #002d25;
    --soft-bg: #e9f7f2;
    --gold: #d4af37;
}

/* Main Rounded Container */
.commitment-card {
    background-color: var(--soft-bg);
    border-radius: 60px;
    /* High radius as per image */
    padding: 80px 40px;
    margin-top: 40px;
    transition: all 0.5s ease-out;
}

.heart-icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--brand-green);
    font-weight: 700;
    margin-bottom: 25px;
}

.description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--brand-green);
    line-height: 1.8;
    font-size: 1.05rem;
    opacity: 0.9;
}

/* Stats Grid */
.stat-item h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--brand-green);
    margin-top: 40px;
    font-size: 2.5rem;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--brand-green);
    opacity: 0.6;
}

/* Quote Section */
.quote-container {
    padding: 60px 20px;
    text-align: center;
}

.main-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.75rem;
    color: var(--brand-green);
    margin-bottom: 10px;
}

.sub-quote {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 40px;
}

/* The Dark Pill Button */
.btn-brand {
    background-color: var(--brand-green);
    text-decoration: none;
    color: #fff;
    border-radius: 15px;
    /* Slightly rounded edges as per image */
    padding: 15px 40px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    transition: 0.3s;
}

.btn-brand:hover {
    background-color: #004439;
    color: #fff;
    transform: scale(1.03);
}

/* Mobile Specific Tweaks */
@media (max-width: 768px) {
    .commitment-card {
        border-radius: 30px;
        padding: 40px 20px;
    }

    .main-quote {
        font-size: 1.4rem;
    }
}