:root {
    --about-accent: #cf3e24;
    --about-accent-dark: #ab2f1a;
    --about-text: #2f2f2f;
    --about-muted: #686868;
    --about-soft: #f4efe9;
    --about-card: #fffdf9;
}

.container {
    width: min(1200px, calc(100% - 32px));
}

.nav a.active {
    color: var(--about-accent);
}

.nav a.active::after {
    width: 100%;
    background: var(--about-accent);
}

.aboutus-page {
    color: var(--about-text);
}

.aboutus-page section {
    padding: 70px 0;
}

.aboutus-page h2 {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.aboutus-page p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--about-muted);
}

.about-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.about-hero-media,
.about-hero-overlay {
    position: absolute;
    inset: 0;
}

.about-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    background: linear-gradient(115deg, rgba(26, 24, 22, 0.72) 0%, rgba(46, 28, 20, 0.45) 60%, rgba(95, 58, 35, 0.2) 100%);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 700px;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 62px;
    line-height: 1.08;
    margin-bottom: 26px;
}

.about-hero-content p {
    color: rgba(255, 255, 255, 0.94);
    margin-top: 18px;
    font-size: 20px;
}

.about-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--about-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.4px;
    padding: 12px 24px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.about-video-btn:hover {
    background: var(--about-accent-dark);
    transform: translateY(-2px);
}

.about-intro {
    background: #fff;
    text-align: center;
}

.about-intro h2 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro p {
    max-width: 880px;
    margin: 0 auto;
}

.about-pillar-section {
    background: var(--about-soft);
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-pillar {
    background: var(--about-card);
    border: 1px solid #ebdfd4;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(46, 20, 7, 0.08);
}

.about-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f58b68, var(--about-accent));
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.about-pillar h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.about-stats-section {
    background: #fff;
}

.about-stats-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-stat {
    background: linear-gradient(155deg, #fff8f2 0%, #f4e8dc 100%);
    border: 1px solid #ebdbcc;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.about-stat-label {
    font-size: 16px;
    color: #5c4a3e;
    margin-bottom: 10px;
}

.about-stat-value {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: var(--about-accent);
}

.about-trust-section {
    background: var(--about-soft);
    text-align: center;
}

.about-logos {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.about-logos span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #e7d7c8;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    color: #61493c;
}

.about-story-section {
    background: #fff;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
    align-items: center;
}

.about-story-media {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.13);
}

.about-story-media img {
    width: 100%;
    display: block;
}

.about-story-content h2 {
    margin-bottom: 18px;
}

.about-story-content p {
    margin-bottom: 14px;
}

.about-primary-btn,
.about-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    padding: 12px 24px;
    transition: all 0.25s ease;
}

.about-primary-btn {
    background: var(--about-accent);
    border: 1px solid var(--about-accent);
    color: #fff;
}

.about-primary-btn:hover {
    background: var(--about-accent-dark);
    border-color: var(--about-accent-dark);
    transform: translateY(-2px);
}

.about-secondary-btn {
    background: transparent;
    border: 1px solid var(--about-accent);
    color: var(--about-accent);
}

.about-secondary-btn:hover {
    background: var(--about-accent);
    color: #fff;
}

.about-team-section {
    background: var(--about-soft);
    text-align: center;
}

.about-team-intro {
    max-width: 850px;
    margin: 0 auto 28px;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-team-card {
    background: #fff;
    border: 1px solid #eadbcd;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
}

.about-team-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.about-team-card h3 {
    font-size: 19px;
    padding: 16px 18px 6px;
}

.about-team-card p {
    padding: 0 18px 18px;
    font-size: 14px;
}

.about-cta-section {
    background: linear-gradient(115deg, #25150e 0%, #3b1f16 100%);
    text-align: center;
}

.about-cta-section h2 {
    color: #fff;
    margin-bottom: 22px;
}

.about-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.about-cta-section .about-primary-btn {
    background: var(--about-accent);
}

.about-cta-section .about-secondary-btn {
    border-color: #fff;
    color: #fff;
}

.about-cta-section .about-secondary-btn:hover {
    background: #fff;
    color: #25150e;
}

@media (max-width: 980px) {
    .header .container {
        height: auto;
        padding-top: 12px;
        padding-bottom: 12px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .nav {
        width: 100%;
        margin-left: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .nav a,
    .nav-dropdown {
        margin-left: 0;
        font-size: 15px;
    }

    .mega-menu {
        display: none;
    }

    .aboutus-page h2 {
        font-size: 32px;
    }

    .about-hero-content h1 {
        font-size: 44px;
    }

    .about-pillars,
    .about-stats,
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .footer .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .sidebar-actions {
        display: none;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 24px);
    }

    .aboutus-page section {
        padding: 52px 0;
    }

    .aboutus-page h2 {
        font-size: 26px;
    }

    .about-hero {
        min-height: 420px;
    }

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

    .about-hero-content p {
        font-size: 17px;
    }

    .about-pillars,
    .about-stats,
    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-actions {
        flex-direction: column;
    }

    .footer .container {
        grid-template-columns: 1fr;
    }
}
