:root {
    --about-primary: #20c997;
    --about-secondary: #198754;
    --about-accent: #0d6efd;
    --about-surface: rgba(255, 255, 255, 0.92);
}

body.about-body {
    background: linear-gradient(160deg, rgba(32, 201, 151, 0.12) 0%, rgba(32, 201, 151, 0.04) 40%, rgba(13, 110, 253, 0.05) 100%);
    min-height: 100vh;
    color: #1f1f1f;
}

.about-page {
    position: relative;
    padding-bottom: 4rem;
}

.about-hero {
    position: relative;
    margin: 2rem auto 0;
    padding: 4.5rem 0;
    border-radius: 1.75rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.92), rgba(32, 201, 151, 0.92));
    box-shadow: 0 22px 60px rgba(25, 135, 84, 0.18);
    color: #fff;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 55%),
                radial-gradient(circle at 80% 0, rgba(13, 110, 253, 0.25), transparent 45%),
                radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.18), transparent 60%);
    pointer-events: none;
}

.about-hero .badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
}

.about-hero h1 {
    font-size: 2.85rem;
    font-weight: 700;
    line-height: 1.15;
}

.about-hero p.lead {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    max-width: 38rem;
    opacity: 0.92;
}

.about-hero .cta-buttons .btn {
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-hero .cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.about-hero .hero-card {
    background: rgba(255, 255, 255, 0.17);
    border-radius: 1.5rem;
    padding: 2.25rem;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.12);
}

.about-hero .hero-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero .feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 999px;
    padding: 0.65rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.93rem;
    margin: 0.35rem 0.4rem 0 0;
}

.about-section {
    margin-top: 4rem;
}

.section-title {
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    color: #114b34;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.6rem;
    width: 60%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--about-primary), var(--about-accent));
}

.about-stats .stat-card {
    background: var(--about-surface);
    border-radius: 1.25rem;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 12px 40px rgba(23, 162, 184, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    height: 100%;
}

.stat-icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(32, 201, 151, 0.18);
    color: var(--about-secondary);
    font-size: 1.35rem;
}

.stat-number {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #0f5132;
}

.stat-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
    color: #34423b;
}

.feature-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 1rem;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #ffffff;
}

.feature-accordion .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(32, 201, 151, 0.08);
}

.feature-accordion .accordion-button:not(.collapsed) {
    color: var(--about-secondary);
    background: rgba(32, 201, 151, 0.16);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.feature-accordion .accordion-body ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.about-steps {
    background: rgba(255, 255, 255, 0.86);
    border-radius: 1.75rem;
    padding: 3rem;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.about-steps .step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-steps .step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.9), rgba(32, 201, 151, 0.9));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 14px 30px rgba(25, 135, 84, 0.25);
}

.about-steps .step-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: #0f5132;
}

.about-callout {
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(32, 201, 151, 0.12));
    border-radius: 1.75rem;
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: 0 16px 40px rgba(13, 110, 253, 0.12);
}

.about-callout h2 {
    font-weight: 700;
    font-size: 2.1rem;
    color: #0f3d64;
}

.about-callout p {
    font-size: 1.05rem;
    color: #214b76;
    max-width: 40rem;
    margin: 1rem auto 2rem;
}

@media (max-width: 991.98px) {
    .about-hero {
        padding: 3.5rem 0;
        margin-top: 1.5rem;
    }

    .about-hero h1 {
        font-size: 2.3rem;
    }

    .about-hero .hero-card {
        margin-top: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .about-steps {
        padding: 2rem 1.5rem;
    }

    .about-steps .step-item {
        flex-direction: column;
    }

    .about-callout {
        padding: 2.5rem 1.75rem;
    }
}