        /* --- CORE VARIABLES --- */
        :root {
            --primary-gold: #eebb54;
            --primary-gold-hover: #d4a036;
            --bg-dark: #2d2d2d;
            --bg-darker: #1f1f1f;
            --bg-footer: #141b2d;
            --text-white: #ffffff;
            --text-grey: #b3b3b3;
            --transition-speed: 0.3s;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #f4f4f4;
            color: #333;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; }
        a { text-decoration: none; color: inherit; transition: var(--transition-speed); }

        /* --- ANIMATIONS --- */
        @keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        .animate-up { animation: slideUp 0.8s ease-out forwards; opacity: 0; }
        .animate-fade { animation: fadeIn 1.2s ease-out forwards; opacity: 0; }
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }

        /* --- HEADER --- */
        header {
            background-color: var(--bg-dark);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .logo-container h2 { color: var(--primary-gold); font-size: 1.8rem; font-weight: 700; line-height: 1; }
        .logo-container span { color: var(--text-white); font-size: 0.8rem; display: block; margin-top: 5px; }

        nav ul { display: flex; list-style: none; gap: 2rem; }
        nav a { color: var(--text-white); font-weight: 500; font-size: 0.95rem; position: relative; }
        nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--primary-gold); transition: var(--transition-speed); }
        nav a:hover, nav a.active { color: var(--primary-gold); }
        nav a:hover::after, nav a.active::after { width: 100%; }

        /* --- ABOUT HERO --- */
        .about-hero {
            background-color: var(--bg-dark);
            padding: 10rem 5% 6rem 5%;
            text-align: center;
            color: white;
            position: relative;
        }

        .about-hero h1 { font-size: 3.5rem; text-transform: uppercase; margin-bottom: 1.5rem; line-height: 1.1; }
        .about-hero h1 span { color: var(--primary-gold); }
        .about-hero p { max-width: 800px; margin: 0 auto; font-size: 1.2rem; color: var(--text-grey); line-height: 1.6; }

        /* --- MISSION SECTION --- */
        .mission-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding: 6rem 5%;
            background-color: white;
            align-items: center;
            gap: 4rem;
        }

        .mission-content h2 { font-size: 2.2rem; color: var(--bg-dark); margin-bottom: 1.5rem; border-left: 5px solid var(--primary-gold); padding-left: 1.5rem; }
        .mission-content p { font-size: 1.1rem; line-height: 1.8; color: #555; margin-bottom: 2rem; }

        .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
        .stat-item h3 { font-size: 2.5rem; color: var(--primary-gold); margin-bottom: 5px; }
        .stat-item p { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; color: var(--bg-dark); }

        /* --- THE 2025 EDGE --- */
        .edge-section {
            background-color: var(--bg-darker);
            color: white;
            padding: 6rem 5%;
            text-align: center;
        }

        .edge-section h2 { font-size: 2.5rem; margin-bottom: 3rem; }
        .edge-section h2 span { color: var(--primary-gold); }

        .edge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .edge-card {
            background: rgba(255,255,255,0.05);
            padding: 3rem 2rem;
            border-radius: 15px;
            border: 1px solid rgba(238, 187, 84, 0.2);
            transition: 0.3s;
        }

        .edge-card:hover {
            background: rgba(238, 187, 84, 0.05);
            border-color: var(--primary-gold);
            transform: translateY(-10px);
        }

        .edge-card i { font-size: 3rem; color: var(--primary-gold); margin-bottom: 1.5rem; }
        .edge-card h4 { font-size: 1.4rem; margin-bottom: 1rem; }
        .edge-card p { color: var(--text-grey); font-size: 0.95rem; line-height: 1.6; }

        /* --- LEADERSHIP SECTION --- */
        .leadership {
            padding: 6rem 5%;
            background-color: #f9f9f9;
        }

        .leadership-card {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            display: flex;
            align-items: center;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .leader-img {
            flex: 1;
            background-color: var(--bg-dark);
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary-gold);
            font-size: 10rem;
        }

        .leader-info {
            flex: 1.2;
            padding: 4rem;
        }

        .leader-info h4 { color: var(--primary-gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .leader-info h2 { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--bg-dark); }
        .leader-info p { font-size: 1.05rem; line-height: 1.8; color: #666; font-style: italic; }

        /* --- FOOTER --- */
        footer {
            background-color: var(--bg-footer);
            color: white;
            padding: 3rem 5%;
            border-top: 3px solid var(--primary-gold);
        }
        .footer-content { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem; }
        .footer-left h4 { font-size: 1.2rem; color: var(--primary-gold); margin-bottom: 1rem; }
        .footer-info p { font-size: 0.9rem; color: #ccc; margin-bottom: 0.5rem; }
        .social-icons { display: flex; gap: 1.5rem; }
        .social-icons i { font-size: 1.5rem; color: white; cursor: pointer; transition: 0.3s; }
        .social-icons i:hover { color: var(--primary-gold); }

        /* Responsive */
        @media (max-width: 900px) {
            .mission-section { grid-template-columns: 1fr; text-align: center; }
            .mission-content h2 { border-left: none; padding-left: 0; }
            .leadership-card { flex-direction: column; }
            .leader-img { height: 300px; width: 100%; }
            .leader-info { padding: 2rem; text-align: center; }
            .about-hero h1 { font-size: 2.2rem; }
            header { flex-direction: column; gap: 1rem; }
        }