        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* Hero Section */
        .hero {
            margin-top: 82px;
            background: linear-gradient(135deg, #1A241E 0%, #0F1612 100%);
            padding: 140px 0 100px;
            text-align: center;
            color: #FFFFFF;
            position: relative;
            overflow: hidden;
        }

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

        .hero-badge {
            display: inline-block;
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #C6A867;
            background: rgba(198, 168, 103, 0.15);
            padding: 8px 20px;
            border-radius: 100px;
            margin-bottom: 24px;
            border: 1px solid rgba(198, 168, 103, 0.3);
            animation: fadeInDown 0.8s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        .hero-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 72px;
            font-weight: 400;
            margin-bottom: 24px;
            font-style: italic;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 22px;
            font-weight: 400;
            margin-bottom: 16px;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        /* Section */
        .section {
            padding: 100px 0;
        }

        .section-alt {
            background: #FAFAF8;
        }

        .section-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 52px;
            font-weight: 400;
            color: #1A241E;
            margin-bottom: 16px;
            text-align: center;
        }

        .section-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 19px;
            color: #666;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 64px;
            line-height: 1.7;
        }

        /* Community Stats Infographic */
        .stats-intro {
            max-width: 900px;
            margin: 0 auto 80px;
            text-align: center;
        }

        .stats-intro h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 38px;
            font-weight: 500;
            color: #2D5A3D;
            margin-bottom: 24px;
        }

        .stats-intro p {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            color: #666;
            line-height: 1.9;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 60px;
        }

        .stat-card {
            background: #FFFFFF;
            padding: 40px 28px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2D5A3D, #4A8B5C);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
        }

        .stat-number {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 52px;
            font-weight: 700;
            color: #2D5A3D;
            display: block;
            margin-bottom: 12px;
        }

        .stat-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
        }

        /* Orang Asli Section - DARK THEME */
        .orang-asli-section {
            background: linear-gradient(135deg, #1A241E 0%, #0F1612 100%);
            padding: 100px 0;
            color: #FFFFFF;
            position: relative;
            overflow: hidden;
        }

        .orang-asli-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .orang-asli-text h2 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 52px;
            font-weight: 400;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .orang-asli-badge {
            display: inline-block;
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #C6A867;
            background: rgba(198, 168, 103, 0.15);
            padding: 6px 16px;
            border-radius: 100px;
            margin-bottom: 20px;
        }

        .orang-asli-text p {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }

        .orang-asli-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(8px);
        }

        .feature-text h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #C6A867;
            margin-bottom: 6px;
        }

        .feature-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            margin: 0;
            line-height: 1.6;
        }

        .orang-asli-image {
            width: 100%;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(198, 168, 103, 0.3);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .camera-icon {
            font-size: 32px;
            color: #888;
        }

        .orang-asli-cta {
            margin-top: 32px;
        }

        .cta-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 36px;
            background: #C6A867;
            color: #1A241E;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 100px;
            transition: all 0.3s ease;
        }

        .cta-link:hover {
            background: #D4B676;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(198, 168, 103, 0.4);
        }

        /* Programmes Section */
        .programmes-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .programmes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .programme-card {
            background: #FFFFFF;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
        }

        .programme-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 56px rgba(0, 0, 0, 0.15);
        }

        .programme-image {
            width: 100%;
            height: 320px;
            background: #F5F5F5;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .programme-badge {
            position: absolute;
            top: 24px;
            right: 24px;
            background: rgba(198, 168, 103, 0.95);
            backdrop-filter: blur(10px);
            color: #1A241E;
            padding: 8px 20px;
            border-radius: 100px;
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .programme-content {
            padding: 36px;
        }

        .programme-category {
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #2D5A3D;
            margin-bottom: 12px;
        }

        .programme-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 32px;
            font-weight: 600;
            color: #1A241E;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .programme-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .programme-meta {
            display: flex;
            gap: 24px;
            padding-top: 24px;
            border-top: 1px solid #F0F0F0;
            margin-bottom: 24px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #999;
        }

        .meta-icon {
            font-size: 18px;
            color: #2D5A3D;
        }

        .programme-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #2D5A3D;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .programme-link:hover {
            color: #4A8B5C;
            gap: 10px;
        }

        /* Featured Programme - HOKA */
        .featured-programme {
            background: linear-gradient(135deg, #1A241E 0%, #0F1612 100%);
            border-radius: 24px;
            padding: 60px;
            color: #FFFFFF;
            position: relative;
            overflow: hidden;
            margin-top: 60px;
        }

        .featured-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .featured-text h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 48px;
            font-weight: 500;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .featured-badge {
            display: inline-block;
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #C6A867;
            background: rgba(198, 168, 103, 0.15);
            padding: 6px 16px;
            border-radius: 100px;
            margin-bottom: 20px;
        }

        .featured-text p {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }

        .featured-highlights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 32px;
        }

        .highlight-box {
            text-align: center;
            padding: 24px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .highlight-number {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 36px;
            font-weight: 700;
            color: #C6A867;
            display: block;
            margin-bottom: 8px;
        }

        .highlight-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .featured-image {
            width: 100%;
            height: 400px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(198, 168, 103, 0.3);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
        }

        .animate-on-scroll.animated {
            animation: fadeInUp 0.8s ease forwards;
        }

        .slide-left {
            opacity: 0;
        }

        .slide-left.animated {
            animation: slideInLeft 0.8s ease forwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .slide-right {
            opacity: 0;
        }

        .slide-right.animated {
            animation: slideInRight 0.8s ease forwards;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .scale-in {
            opacity: 0;
        }

        .scale-in.animated {
            animation: scaleIn 0.8s ease forwards;
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Staggered delays */
        .animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
        .animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
        .animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }
        .animate-on-scroll:nth-child(4) { animation-delay: 0.4s; }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 42px;
            }

            .stats-grid,
            .programmes-grid,
            .orang-asli-content,
            .featured-content {
                grid-template-columns: 1fr;
            }

        }