    /* --- TYPOGRAPHY & BRAND --- */
    :root {
        --primary: #ff9a30;
        --primary-dark: #ea580c;
        --primary-light: #fff7ed;
        --secondary: #d2f2d4;
        --dark: #1a1a1a;
        --gray-text: #64748b;
        --gray-bg: #fafafa;
        --border: #e5e5e5;
        --surface: #ffffff;
        --light: #f8f9fa;
        --shadow: 0 4px 12px rgba(0,0,0,0.08);
        --nav-height: 70px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        background: #ffffff;
        color: var(--dark);
        line-height: 1.6;
    }

    /* --- GLOBAL PAGE STYLES --- */
    .about-page {
        background: var(--surface);
        padding-top: 42px;
        padding-bottom: 80px;
    }

    .section-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 48px 16px;
    }

    /* --- HERO SECTION --- */
    .about-hero-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 32px;
        align-items: center;
    }

    @media (max-width: 768px) {
        .about-page{
              padding-top: 0;
        }
        .about-hero-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

    .hero-text h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 24px;
        letter-spacing: -0.02em;
        color: var(--dark);
    }

    .hero-text p {
        font-size: 1.125rem;
        color: var(--gray-text);
        line-height: 1.7;
        margin-bottom: 32px;
    }

    .hero-image img {
        width: 100%;
        border-radius: 20px;
        object-fit: cover;
    }

    /* --- MISSION SECTION --- */
    .about-mission {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .about-mission h2 {
        font-size: 2.25rem;
        font-weight: 900;
        margin-bottom: 24px;
    }

    .about-mission p {
        font-size: 1.125rem;
        line-height: 1.7;
        margin-bottom: 32px;
    }

    .about-mission span {
        color: var(--primary);
        font-weight: 600;
    }

    /* --- HOW IT WORKS SECTION --- */
    .how-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 32px;
    }

    @media (max-width: 768px) {
        .how-grid {
            grid-template-columns: 1fr;
        }
    }

    .how-card {
        background: var(--light);
        padding: 24px;
        border-radius: 20px;
        box-shadow: var(--shadow);
        text-align: center;
        transition: all 0.3s ease;
    }

    .how-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .how-card img {
        width: 48px;
        margin-bottom: 12px;
    }

    .how-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--dark);
    }

    .how-card p {
        font-size: 1rem;
        color: var(--gray-text);
        line-height: 1.6;
    }

    /* --- VALUES SECTION --- */
    .values-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: center;
    }

    @media (max-width: 768px) {
        .values-grid {
            grid-template-columns: 1fr;
        }
    }

    .values-content h2 {
        font-size: 2.25rem;
        font-weight: 900;
        margin-bottom: 24px;
    }

    .values-list {
        list-style: none;
    }

    .values-list li {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
        font-size: 1.125rem;
    }

    .values-list li::before {
        content: '✓';
        display: inline-block;
        width: 24px;
        height: 24px;
        background-color: var(--primary);
        color: white;
        border-radius: 50%;
        text-align: center;
        line-height: 24px;
        margin-right: 12px;
        font-weight: bold;
    }

    .values-image {
        text-align: center;
    }

    .values-image img {
        max-width: 100%;
        border-radius: 20px;
    }

    /* --- COMMUNITY SECTION --- */
    .community-list {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 16px;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) var(--light);
    }

    .community-list::-webkit-scrollbar {
        height: 8px;
    }

    .community-list::-webkit-scrollbar-track {
        background: var(--light);
        border-radius: 10px;
    }

    .community-list::-webkit-scrollbar-thumb {
        background-color: var(--primary);
        border-radius: 10px;
    }

    .community-card {
        min-width: 280px;
        background: var(--light);
        border-radius: 16px;
        padding: 24px;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
    }

    .community-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .community-header {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
    }

    .community-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 16px;
    }

    .community-info h4 {
        font-size: 1.125rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .community-info p {
        font-size: 0.875rem;
        color: var(--gray-text);
    }

    .community-quote {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--dark);
        font-style: italic;
    }

    /* --- CTA SECTION --- */
    .about-cta {
        background: var(--primary-light);
        border-radius: 24px;
        text-align: center;
        box-shadow: var(--shadow);
        padding: 48px 32px;
    }

    .about-cta h2 {
        font-size: 2rem;
        font-weight: 900;
        margin-bottom: 16px;
        color: var(--dark);
    }

    .about-cta p {
        font-size: 1.125rem;
        color: var(--gray-text);
        margin-bottom: 32px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-btn {
        display: inline-block;
        margin-top: 16px;
        padding: 14px 32px;
        background: var(--primary);
        color: white;
        border-radius: 999px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .cta-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 154, 48, 0.3);
    }

    /* --- SECTION HEADERS --- */
    .section-header {
        text-align: center;
        margin-bottom: 48px;
    }

    .section-header h2 {
        font-size: 2.25rem;
        font-weight: 900;
        margin-bottom: 16px;
        color: var(--dark);
    }

    .section-divider {
        width: 60px;
        height: 4px;
        background: var(--primary);
        margin: 0 auto;
        border-radius: 2px;
    }
