:root {
        --primary-yellow:#f5c518;
        --dark-text: #1a1a1a;
        --gray-text: #6c757d;
        --light-bg: #f8f9fa;
    }


    
    /* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
        padding: 100px 0 80px;
        position: relative;
        overflow: hidden;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }
    
    .logo-large {
        max-width: 450px;
        margin: 0 auto 30px;
        animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--dark-text);
        margin-bottom: 20px;
    }
    
    .hero-title .highlight {
        color: var(--primary-yellow);
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        color: var(--gray-text);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
    }
    
    /* Section Styles */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--primary-yellow);
        border-radius: 2px;
    }
    
    .section-description {
        font-size: 1.1rem;
        color: var(--gray-text);
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    /* Promise Cards */
    .promise-card {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .promise-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-yellow) 0%, #ffeb3b 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }
    
    .promise-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 36px rgba(245, 197, 24, .18);
        border-color: var(--primary-yellow);
    }
    
    .promise-card:hover::before {
        transform: scaleX(1);
    }
    
    .promise-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #FFDD22 0%, #FFDD22 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        font-size: 2rem;
        color: white;
        transition: all 0.3s ease;
    }
    
    .promise-card:hover .promise-icon {
        transform: rotate(360deg) scale(1.1);
    }
    
    .promise-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--dark-text);
    }
    
    .promise-text {
        color: var(--gray-text);
        font-size: 1rem;
        line-height: 1.8;
    }
    
    /* Mission Vision Value Cards */
    .mvv-card {
        background: linear-gradient(135deg, #ffffff 0%, #fffef5 100%);
        border-radius: 25px;
        padding: 10px 40px;
        margin-bottom: 30px;
        border-left: 6px solid var(--primary-yellow);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }
    
    .mvv-card:hover {
        transform: translateX(10px);
        box-shadow: 0 12px 40px rgba(255, 193, 7, 0.2);
    }
    
    .mvv-icon {
        font-size: 3rem;
        color: var(--primary-yellow);
        margin-bottom: 20px;
    }
    
    .mvv-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-yellow);
        margin-bottom: 15px;
    }
    
    .mvv-text {
        font-size: 1.1rem;
        color: var(--gray-text);
        line-height: 1.9;
    }
    
    /* Stats Section */
    .stats-section {
        background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffeb3b 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }
    
    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.3)"/></svg>');
        opacity: 0.3;
    }
    
    .stat-item {
        text-align: center;
        padding: 30px;
        position: relative;
    }
    
    .stat-number {
        font-size: 3.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 10px;
        display: block;
    }
    
    .stat-label {
        font-size: 1.1rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        padding: 100px 0;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
        border-radius: 50%;
    }
    
    .cta-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
    }
    
    .cta-title .highlight {
        color: var(--primary-yellow);
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 40px;
    }
    
    .btn-cta {
        background: var(--primary-yellow);
        color: var(--dark-text);
        padding: 18px 50px;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 700;
        border: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
        position: relative;
        overflow: hidden;
    }
    
    .btn-cta::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .btn-cta:hover::before {
        width: 300px;
        height: 300px;
    }
    
    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 193, 7, 0.6);
    }
    
    .btn-cta span {
        position: relative;
        z-index: 1;
    }
    
    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .feature-item {
        background: white;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid #f0f0f0;
    }
    
    .feature-item:hover {
        border-color: var(--primary-yellow);
        transform: scale(1.05);
    }
    
    .feature-item i {
        font-size: 3rem;
        color: var(--primary-yellow);
        margin-bottom: 20px;
    }
    
    .feature-item h4 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .feature-item p {
        color: var(--gray-text);
        font-size: 0.95rem;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .cta-title {
            font-size: 2rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
        }
        
        .logo-large {
            max-width: 300px;
        }
        
        .promise-card {
            margin-bottom: 20px;
        }
    }
    
    /* Scroll animations */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.8s ease;
    }