:root {
        --primary-gold: #F4D03F;
        --secondary-gold: #D0993D;
        --dark-bg: #1a1a1a;
        --card-bg: #2C2B29;
        --card-border: rgba(208, 153, 61, 0.4);
        --text-light: #ffffff;
        --text-muted: #cccccc;
    }

    /* Hero Section */
    .about-hero {
        text-align: center;
        padding: 3.5rem 2rem;
        background: linear-gradient(135deg, var(--dark-bg) 0%, var(--card-bg) 100%);
        border-radius: 20px;
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
        border: 2px solid var(--primary-gold);
    }

    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, rgba(244, 208, 63, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .about-hero h1 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-gold);
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
    }

    .about-hero p {
        font-size: 1.15rem;
        color: var(--text-muted);
        position: relative;
        z-index: 2;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .about-hero .hero-icon {
        margin-bottom: 1.2rem;
        position: relative;
        z-index: 2;
        opacity: 0.9;
    }

    .about-hero .hero-icon svg {
        width: 64px;
        height: 64px;
        fill: var(--primary-gold);
    }

    /* Section Title */
    .section-title {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-gold);
        margin-bottom: 0.5rem;
    }

    .section-title p {
        color: var(--text-muted);
        font-size: 1rem;
    }

    .section-title .title-line {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
        margin: 0.8rem auto 0;
        border-radius: 3px;
    }

    /* Stats Section */
    .stats-section {
        margin-bottom: 3rem;
    }

    .stat-card {
        background: linear-gradient(135deg, var(--card-bg), #3a3830);
        border: 1px solid var(--card-border);
        border-radius: 16px;
        padding: 2rem 1.5rem;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
    }

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(244, 208, 63, 0.2);
        border-color: var(--primary-gold);
    }

    .stat-card .stat-icon {
        margin-bottom: 1rem;
    }

    .stat-card .stat-icon svg {
        width: 40px;
        height: 40px;
        fill: var(--primary-gold);
    }

    .stat-card .stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary-gold);
        display: block;
        margin-bottom: 0.3rem;
    }

    .stat-card .stat-label {
        font-size: 0.9rem;
        color: var(--text-muted);
        font-weight: 500;
    }

    /* Feature Cards */
    .feature-card {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 16px;
        padding: 2rem;
        height: 100%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(244, 208, 63, 0.15);
        border-color: var(--primary-gold);
    }

    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(244, 208, 63, 0.15), rgba(208, 153, 61, 0.15));
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.2rem;
    }

    .feature-card .feature-icon svg {
        width: 28px;
        height: 28px;
        fill: var(--primary-gold);
    }

    .feature-card h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-light);
        margin-bottom: 0.7rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.7;
        margin: 0;
    }

    /* Why Choose Us */
    .why-section {
        background: linear-gradient(135deg, var(--card-bg), #1f1e1c);
        border: 1px solid var(--card-border);
        border-radius: 20px;
        padding: 3rem 2rem;
        margin-bottom: 3rem;
    }

    .why-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .why-item:last-child {
        margin-bottom: 0;
    }

    .why-item .why-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-item .why-icon svg {
        width: 20px;
        height: 20px;
        fill: #1a1a1a;
    }

    .why-item .why-text h5 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-light);
        margin-bottom: 0.3rem;
    }

    .why-item .why-text p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin: 0;
    }

    /* How It Works */
    .step-card {
        text-align: center;
        padding: 1.5rem;
        position: relative;
    }

    .step-card .step-number {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 1.3rem;
        font-weight: 800;
        color: #1a1a1a;
    }

    .step-card h5 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-light);
        margin-bottom: 0.5rem;
    }

    .step-card p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.6;
    }

    .step-connector {
        display: none;
    }

    @media (min-width: 768px) {
        .step-connector {
            display: block;
            position: absolute;
            top: 40px;
            right: -30px;
            color: var(--primary-gold);
            font-size: 1.5rem;
            opacity: 0.5;
        }
    }

    /* CTA Section */
    .cta-section {
        text-align: center;
        background: linear-gradient(135deg, var(--card-bg), #3a3830);
        border: 2px solid var(--primary-gold);
        border-radius: 20px;
        padding: 3rem 2rem;
        margin-bottom: 2rem;
    }

    .cta-section h3 {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--primary-gold);
        margin-bottom: 1rem;
    }

    .cta-section p {
        color: var(--text-muted);
        font-size: 1rem;
        max-width: 500px;
        margin: 0 auto 1.5rem;
        line-height: 1.6;
    }

    .btn-cta {
        background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
        color: #1a1a1a;
        font-weight: 700;
        padding: 12px 32px;
        border-radius: 12px;
        border: none;
        font-size: 1rem;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .btn-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
        color: #1a1a1a;
    }

    .step-connector svg {
        width: 20px;
        height: 20px;
        fill: var(--primary-gold);
    }

    .cta-section h3 svg {
        width: 28px;
        height: 28px;
        fill: var(--primary-gold);
        vertical-align: middle;
        margin-right: 8px;
    }

    .btn-cta svg {
        width: 20px;
        height: 20px;
        fill: #1a1a1a;
        vertical-align: middle;
        margin-right: 6px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .about-hero {
            padding: 2rem 1.5rem;
        }

        .about-hero h1 {
            font-size: 1.8rem;
        }

        .about-hero p {
            font-size: 1rem;
        }

        .about-hero .hero-icon svg {
            width: 48px;
            height: 48px;
        }

        .section-title h2 {
            font-size: 1.4rem;
        }

        .stat-card {
            padding: 1.2rem 0.8rem;
        }

        .stat-card .stat-icon svg {
            width: 30px;
            height: 30px;
        }

        .stat-card .stat-number {
            font-size: 1.3rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .stat-card .stat-label {
            font-size: 0.75rem;
        }

        .feature-card {
            padding: 1.5rem;
        }

        .feature-card .feature-icon {
            width: 48px;
            height: 48px;
        }

        .feature-card .feature-icon svg {
            width: 22px;
            height: 22px;
        }

        .feature-card h4 {
            font-size: 1rem;
        }

        .feature-card p {
            font-size: 0.85rem;
        }

        .why-section {
            padding: 1.5rem 1rem;
        }

        .why-item .why-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
        }

        .why-item .why-icon svg {
            width: 16px;
            height: 16px;
        }

        .why-item .why-text h5 {
            font-size: 0.9rem;
        }

        .why-item .why-text p {
            font-size: 0.8rem;
        }

        .step-card {
            padding: 1rem 0.5rem;
        }

        .step-card .step-number {
            width: 40px;
            height: 40px;
            font-size: 1.1rem;
        }

        .step-card h5 {
            font-size: 0.9rem;
        }

        .step-card p {
            font-size: 0.75rem;
        }

        .cta-section {
            padding: 2rem 1.5rem;
        }

        .cta-section h3 {
            font-size: 1.2rem;
        }

        .cta-section h3 svg {
            width: 22px;
            height: 22px;
        }

        .cta-section p {
            font-size: 0.9rem;
        }

        .btn-cta {
            padding: 10px 24px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 400px) {
        .stat-card .stat-number {
            font-size: 1.1rem;
        }

        .stat-card .stat-label {
            font-size: 0.7rem;
        }
    }