.footer,
.footer-copyright {
    position: unset;
}

/* ── Hero background with gradient ── */
.about-hero-bg {
    background: linear-gradient(180deg, #ddf0e5 0%, #ffffff 100%);
    padding: 60px 0 70px;
}

/* ── Page label (left-aligned) ── */
.about-label {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 40px;
}

.about-label .line {
    width: 24px;
    height: 2px;
    background-color: #0b6b5b;
    transition: width 0.3s ease;
}

.about-label .label-text {
    font-size: 16px;
    color: #04533E;
}

/* ── Hero text (centered) ── */
.about-hero-text {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 46px;
    font-weight: 700;
    color: #121212;
    line-height: 1.2;
    margin-bottom: 6px;
    font-family: 'Mona Sans', sans-serif;
}

.about-hero-title span {
    font-weight: 400;
    display: block;
}

.about-hero-desc {
    font-size: 16px;
    color: #5f6368;
    line-height: 1.8;
    max-width: 680px;
    margin: 18px auto 0;
    font-family: 'Inter', sans-serif;
}

/* ── Vision & Mission cards ── */
.about-vm-section {
    padding: 60px 0;
}

.about-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-vm-card {
    background: #e8f5ed;
    border-radius: 16px;
    padding: 36px 32px;
}

.about-vm-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0c8b51;
    margin-bottom: 14px;
    font-family: 'Mona Sans', sans-serif;
}

.about-vm-card p {
    font-size: 15px;
    color: #3d5247;
    line-height: 1.75;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ── Why Choose Sahalat ── */
.about-why-section {
    padding: 10px 0 70px;
}

.about-why-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center;
}

.about-why-image {
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
}

.about-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-why-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 14px;
    line-height: 1.2;
    font-family: 'Mona Sans', sans-serif;
}

.about-why-subtitle {
    font-size: 16px;
    color: #5f6368;
    line-height: 1.7;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
}

/* reuse home page feature classes — only overrides needed */
.about-why-section .features-list {
    grid-template-columns: 1fr;
    gap: 6px;
}

.about-why-section .feature-item {
    padding: 4px 0;
}

/* ── CTA Banner ── */
.about-cta-banner {
    background: #e8f5ed;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 80px;
    border-radius: 20px;
}

.about-cta-banner h2 {
    font-size: 36px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 12px;
    font-family: 'Mona Sans', sans-serif;
}

.about-cta-banner p {
    font-size: 16px;
    color: #5f6368;
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

.about-cta-btn {
    display: inline-block;
    background: #04533E;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease, transform 0.2s ease;
}

.about-cta-btn:hover {
    background: #033d2e;
    color: #fff;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .about-vm-grid {
        grid-template-columns: 1fr;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-why-image {
        height: 300px;
    }

    .about-hero-title {
        font-size: 34px;
    }

    .about-why-content h2 {
        font-size: 30px;
    }

    .about-cta-banner {
        padding: 40px 24px;
    }

    .about-cta-banner h2 {
        font-size: 26px;
    }
}
