 :root {
            --primary-teal: #2b8ca4;
            --dark-navy: #1a3a4a;
            --accent-blue: #4facfe;
            --light-bg: #f9fbfc;
            --white: #ffffff;
            --text-main: #2d3436;
            --font-main: 'Poppins', sans-serif;
        }

        /* Reset & Base Typography */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); }

        body { 
            background-color: var(--light-bg); 
            color: var(--text-main); 
            line-height: 1.7; 
            overflow-x: hidden; 
            font-size: 16px; 
        }

        h1 { font-size: clamp(48px, 5vw, 60px); font-weight: 700; line-height: 1.1; }
        h2 { font-size: clamp(32px, 4vw, 40px); font-weight: 600; line-height: 1.2; }
        h3 { font-size: clamp(22px, 3vw, 28px); font-weight: 600; }
        p { font-size: 18px; font-weight: 400; color: #444; }

        /* --- SHARP EDGED BUTTONS --- */
        .btn-apply, .btn-white, .btn-hero-main {
            border-radius: 0px !important; 
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            font-size: 16px;
            transition: 0.3s;
            text-align: center;
            display: inline-block;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-apply {
            background: var(--primary-teal);
            color: white !important;
            padding: 12px 28px;
        }
        .btn-apply:hover { background: var(--dark-navy); transform: translateY(-2px); }

        .btn-white {
            background-color: var(--white);
            color: var(--dark-navy);
            padding: 18px 45px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .btn-white:hover { background-color: var(--primary-teal); color: white; transform: translateY(-3px); }

        /* Top Bar */
        .top-bar {
            background: var(--dark-navy);
            color: white;
            padding: 10px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            font-weight: 300;
        }
        .top-bar span { margin-right: 20px; }
        .top-bar a { color: white; margin-left: 15px; text-decoration: none; }

        /* Header */
        header {
            background: var(--white);
            padding: 15px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .logo-container img { height: 55px; width: auto; }

        .menu-toggle { display: none; font-size: 1.5rem; color: var(--dark-navy); cursor: pointer; }

        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 30px; }
        nav ul li a { text-decoration: none; color: var(--dark-navy); font-weight: 600; font-size: 16px; }

        /* Hero Section */
        .hero {
            padding: 120px 8%;
            background: linear-gradient(to right, #ffffff 45%, rgba(255,255,255,0.1) 100%), 
                        url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }

        .hero-content { max-width: 750px; }
        .hero-content p { margin: 25px 0 35px; border-left: 5px solid var(--primary-teal); padding-left: 25px; }
        .hero-btns { display: flex; gap: 20px; align-items: center; }

        /* Impact Grid */
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            padding: 60px 8%;
            background: var(--white);
            text-align: center;
            margin-top: -60px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            width: 84%;
            margin-left: 8%;
            position: relative;
            z-index: 10;
        }
        .impact-item h2 { color: var(--primary-teal); margin-bottom: 5px; }
        .impact-item p { font-size: 14px; font-weight: 600; text-transform: uppercase; color: var(--dark-navy); letter-spacing: 1px; }

        /* Services */
        .services-section { padding: 120px 8% 80px; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h3 { color: var(--primary-teal); text-transform: uppercase; letter-spacing: 2px; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
        
        .services-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
        .service-card { padding: 50px 40px; background: var(--white); border-bottom: 5px solid transparent; transition: 0.4s; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
        .service-card:hover { transform: translateY(-12px); border-color: var(--primary-teal); box-shadow: 0 20px 45px rgba(0,0,0,0.1); }
        .service-card i { font-size: 3rem; color: var(--primary-teal); margin-bottom: 25px; display: block; }
        .service-card h4 { font-size: 24px; font-weight: 600; margin-bottom: 15px; color: var(--dark-navy); }

        /* Strategic Influence Section */
        .partners-section { padding: 100px 8%; background: var(--dark-navy); color: white; }
        .partners-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
        .partners-text { flex: 1; }
        .partners-text h2 { color: white; font-size: 40px; font-weight: 600; margin-bottom: 15px; }
        .partners-text p { color: #cfd8dc; font-size: 18px; font-weight: 400; opacity: 1; }
        .partners-logos { flex: 1; display: flex; gap: 15px; flex-wrap: wrap; justify-content: flex-end; }
        .logo-badge {
            padding: 12px 24px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.2);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Vision Section */
        .vision-section { padding: 120px 8%; display: flex; gap: 80px; align-items: center; }
        .vision-text { flex: 1.2; }
        .vision-text h2 { margin-bottom: 25px; }
        .vision-card { flex: 0.8; background: var(--dark-navy); color: white; padding: 50px; }
        .vision-card h4 { font-size: 24px; margin-bottom: 25px; font-weight: 600; }
        .vision-card ul { list-style: none; }
        .vision-card li { font-size: 16px; margin-bottom: 20px; display: flex; align-items: center; font-weight: 400; }

        /* CTA Section */
        .cta-section {
            padding: 120px 8%;
            text-align: center;
            color: var(--white);
            background: linear-gradient(rgba(15, 38, 51, 0.85), rgba(15, 38, 51, 0.85)), 
                        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
            background-attachment: fixed;
        }
        .cta-section h2 { color: white; margin-bottom: 20px; }
        .cta-section p { color: white; font-size: 20px; margin-bottom: 40px; opacity: 0.9; }

        /* Accreditation Slider */
        .accreditation-section { padding: 80px 0; background: var(--white); overflow: hidden; }
        .logo-slider { width: 100%; overflow: hidden; display: flex; }
        .logo-track { display: flex; width: calc(250px * 10); animation: scrollLeft 25s linear infinite; }
        .logo-item { width: 250px; display: flex; align-items: center; justify-content: center; padding: 0 40px; flex-shrink: 0; }
        .logo-item img { max-width: 100%; max-height: 80px; filter: grayscale(0); }

        @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 5)); } }

        /* Footer */
        footer { background: #1a3a4a; color: #eee; padding: 80px 8% 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid #222; }
        .footer-col h4 { color: white; margin-bottom: 25px; font-size: 18px; }
        .footer-col p, .footer-col li a { color: #bbb; font-size: 15px; text-decoration: none; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; font-size: 14px; color: #ffff; }

        /* --- MOBILE RESPONSIVE (LEFT ALIGNMENT) --- */
        @media (max-width: 992px) {
            .top-bar { display: none; }
            
            header, .hero, .services-section, .vision-section, .partners-section, .cta-section, .section-header {
                text-align: left !important;
                align-items: flex-start !important;
            }

            .hero-content { max-width: 100%; }
            .hero-btns { flex-direction: column; align-items: flex-start; }
            .hero-btns a { width: 100%; text-align: left; }

            .impact-grid { 
                grid-template-columns: 1fr; 
                width: 92%; 
                margin-left: 4%; 
                text-align: left; 
                padding: 40px;
            }
            .impact-item { padding: 15px 0; border-bottom: 1px solid #eee; }

            .partners-content { flex-direction: column; align-items: flex-start; }
            .partners-logos { justify-content: flex-start; margin-top: 20px; }

            .menu-toggle { display: block; }
            nav {
                position: absolute;
                top: 100%;
                left: -100%;
                width: 100%;
                background: white;
                transition: 0.4s;
                z-index: 1000;
            }
            nav.active { left: 0; }
            nav ul { flex-direction: column; padding: 30px 8%; }
            nav ul li { margin: 15px 0; margin-left: 0; width: 100%; }

            .vision-section { flex-direction: column; gap: 40px; }
            .vision-card { width: 100%; }

            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; }
        }
         :root {
            --primary-teal: #2b8ca4;
            --dark-navy: #1a3a4a;
            --accent-blue: #4facfe;
            --light-bg: #f9fbfc;
            --white: #ffffff;
            --text-main: #2d3436;
            --font-main: 'Poppins', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); }
        body { background-color: var(--light-bg); color: var(--text-main); line-height: 1.7; }

        /* --- GLOBAL UI COMPONENTS (Matching About Page) --- */
        .top-bar { background: var(--dark-navy); color: white; padding: 10px 8%; display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
        .top-bar a { color: white; margin-left: 15px; text-decoration: none; transition: 0.3s; }
        .top-bar a:hover { color: var(--accent-blue); }

        header { background: var(--white); padding: 15px 8%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .logo-container img { height: 55px; }
        
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 30px; }
        nav ul li a { text-decoration: none; color: var(--dark-navy); font-weight: 600; transition: 0.3s; }
        nav ul li a:hover { color: var(--primary-teal); }
        
        .btn-apply { background: var(--primary-teal); color: white !important; padding: 12px 28px; text-transform: uppercase; font-weight: 600; text-decoration: none; transition: 0.3s; }
        .btn-apply:hover { background: var(--dark-navy); }

        /* Mobile Menu Toggle */
        .menu-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--dark-navy); }

        /* Hero / Page Title */
        .page-title {
            background: linear-gradient(rgba(26, 58, 74, 0.9), rgba(26, 58, 74, 0.9)), url('https://images.unsplash.com/photo-1523966211575-eb4a01e7dd51?auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 8%;
            text-align: center;
        }
        .page-title h1 { font-size: 42px; margin-bottom: 10px; }

        /* --- CONTACT SPECIFIC UI --- */
        .contact-info-section { padding: 100px 8% 40px; }
        .contact-header { text-align: center; margin-bottom: 60px; }
        .contact-header h2 { color: var(--dark-navy); font-size: 36px; margin-bottom: 10px; }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .contact-box {
            background: var(--white);
            padding: 40px;
            text-align: center;
            border-top: 5px solid var(--primary-teal);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: 0.3s;
        }
        .contact-box:hover { transform: translateY(-10px); }
        .contact-box i { font-size: 40px; color: var(--primary-teal); margin-bottom: 20px; display: block; }
        .contact-box h4 { color: var(--dark-navy); margin-bottom: 15px; font-size: 22px; }
        .contact-box p { font-size: 16px; color: #555; }
        .contact-box .highlight { font-weight: 700; color: var(--primary-teal); display: block; margin-top: 10px; font-size: 18px; }

        /* Split Section */
        .form-map-split { padding: 60px 8% 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; background: #fff; }
        .contact-form { background: var(--light-bg); padding: 50px; border-radius: 4px; }
        .form-group { margin-bottom: 25px; }
        .form-group label { display: block; margin-bottom: 10px; font-weight: 600; color: var(--dark-navy); }
        .form-group input, .form-group textarea { 
            width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; 
            outline: none; transition: 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus { border-color: var(--primary-teal); box-shadow: 0 0 8px rgba(43, 140, 164, 0.2); }
        
        .submit-btn { 
            background: var(--primary-teal); color: white; border: none; padding: 18px; width: 100%; 
            font-weight: 700; text-transform: uppercase; cursor: pointer; transition: 0.3s; font-size: 16px;
        }
        .submit-btn:hover { background: var(--dark-navy); letter-spacing: 1px; }

        .map-wrapper { min-height: 500px; border-radius: 4px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .map-wrapper iframe { width: 100%; height: 100%; border: 0; }

        /* --- FOOTER (Matching About Page) --- */
        footer { background: var(--dark-navy); color: #eee; padding: 80px 8% 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; }
        .footer-col h4 { color: white; margin-bottom: 25px; font-size: 20px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: #bbb; text-decoration: none; transition: 0.3s; }
        .footer-col a:hover { color: var(--accent-blue); padding-left: 5px; }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 1024px) {
            .contact-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 992px) {
            header { padding: 15px 5%; }
            .menu-toggle { display: block; }
            nav { 
                display: none; position: absolute; top: 100%; left: 0; width: 100%; 
                background: white; padding: 20px; box-shadow: 0 10px 10px rgba(0,0,0,0.1); 
            }
            nav.active { display: block; }
            nav ul { flex-direction: column; align-items: flex-start; }
            nav ul li { margin: 10px 0; width: 100%; }
            .form-map-split { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .contact-grid { grid-template-columns: 1fr; }
            .page-title h1 { font-size: 32px; }
            .footer-grid { grid-template-columns: 1fr; }
        }
        