
        :root {
            --primary-green: #1B7A4C;
            --secondary-green: #0F6B3F;
            --accent-gold: #D4A520;
            --light-green: #2D9061;
            --dark-green: #0A4428;
            --earth-brown: #8B6F47;
            --emerald: #10B981;
            --neutral-100: #F8FAFC;
            --neutral-200: #E2E8F0;
            --neutral-600: #475569;
            --neutral-800: #1E293B;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Montserrat', sans-serif;
        }

        /* Navbar */
        .navbar {
            background: #fff;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .navbar.scrolled {
            background: rgba(15, 107, 63, 0.98);
            padding: 0.5rem 0;
        }

        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(135deg, #D4A520, #F5C842);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .navbar-toggler {
            color: var(--accent-gold);
            background: var(--primary-green);
        }

        .navbar-brand img {
            height: 45px;
        }

        .nav-link {
            color: green;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--accent-gold) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .dropdown-menu {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            padding: 0.5rem 0;
            margin-top: 0.5rem;
            min-width: 280px;
        }

        .dropdown-item {
            color: var(--primary-green);
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            display: flex;
            align-items: center;
        }

        .dropdown-item i {
            color: var(--accent-gold);
            width: 20px;
        }

        .dropdown-item:hover {
            background: linear-gradient(90deg, rgba(27, 122, 76, 0.1), transparent);
            color: var(--primary-green);
            border-left-color: var(--accent-gold);
            padding-left: 2rem;
        }

        .dropdown-item:focus,
        .dropdown-item:active {
            background: linear-gradient(90deg, rgba(27, 122, 76, 0.15), transparent);
            color: var(--primary-green);
        }

        .dropdown-divider {
            border-top-color: rgba(27, 122, 76, 0.1);
            margin: 0.5rem 0;
        }

        /* Hover to show dropdown */
        .nav-item.dropdown:hover .dropdown-menu {
            display: block;
        }

        /* Animate dropdown arrow */
        .dropdown-toggle::after {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .nav-item.dropdown:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        /* Mobile menu adjustments */
        @media (max-width: 991px) {
            .dropdown-menu {
                background: rgba(255, 255, 255, 0.95);
                border-left: 3px solid var(--accent-gold);
                margin-left: 1rem;
                margin-top: 0;
            }

            .dropdown-item {
                padding: 0.75rem 1rem;
            }

            .dropdown-item:hover {
                padding-left: 1.5rem;
            }

            .nav-item.dropdown:hover .dropdown-menu {
                display: none; /* Disable hover on mobile, use click instead */
            }
        }

        /* Hero Carousel */
        .hero-carousel {
            margin-top: 76px;
        }

        .carousel-item {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(27, 122, 76, 0.35) 0%, rgba(15, 107, 63, 0.5) 50%);
            z-index: 1;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .carousel-item.slide-1 .hero-bg {
            background: url('/static/images/hero.png') center/cover fixed;
        }

        .carousel-item.slide-2 .hero-bg {
            background: url('/static/images/hero_b.png') center/cover fixed;
        }

        .carousel-item.slide-3 .hero-bg {
            background: url('/static/images/hero_c.png') center/cover fixed;
        }

        .carousel-item.slide-4 .hero-bg {
            background: url('/static/images/hero_d.png') center/cover fixed;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            font-weight: 400;
            line-height: 1.6;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }

        .hero-stat {
            text-align: center;
            color: white;
        }

        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-top: 0.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(27, 122, 76, 0.3);
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(27, 122, 76, 0.4);
            background: linear-gradient(135deg, var(--light-green), var(--primary-green));
        }

        .btn-outline-custom {
            background: transparent;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: 2px solid var(--accent-gold);
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background: var(--accent-gold);
            color: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 165, 32, 0.3);
        }

        /* Sections */
        .section {
            padding: 6rem 0;
        }

        .section-dark {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: white;
        }

        .section-light {
            background: var(--neutral-100);
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--primary-green);
        }

        .section-dark .section-title {
            color: white;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--neutral-600);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-dark .section-subtitle {
            color: rgba(255, 255, 255, 0.85);
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
            padding: 5rem 0;
        }

        .stat-card-modern {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            color: white;
        }

        .stat-card-modern:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Feature Cards */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            border: 1px solid var(--neutral-200);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(27, 122, 76, 0.15);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .section-dark .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .section-dark .feature-card:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .feature-icon-modern {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 2rem;
            box-shadow: 0 8px 20px rgba(27, 122, 76, 0.3);
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-green);
        }

        .section-dark .feature-title {
            color: white;
        }

        .feature-text {
            color: var(--neutral-600);
            line-height: 1.7;
        }

        .section-dark .feature-text {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Country Cards */
        .country-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .country-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .country-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(27, 122, 76, 0.2);
            border-color: var(--primary-green);
        }

        .country-flag {
            width: 100%;
            height: 160px;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            transition: all 0.3s ease;
        }

        .country-card:hover .country-flag {
            transform: scale(1.1);
        }

        .country-info {
            padding: 1.5rem;
        }

        .country-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 0.5rem;
        }

        .country-capital {
            color: var(--neutral-600);
            font-size: 0.95rem;
        }

        /* News Cards */
        .news-section {
            background: var(--neutral-100);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .news-card-modern {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .news-card-modern:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(27, 122, 76, 0.15);
        }

        .news-image {
            width: 100%;
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .news-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
        }

        .news-image-1 {
            background-image: url('https://images.unsplash.com/photo-1521791055366-0d553872125f?w=800');
        }

        .news-image-2 {
            background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=800');
        }

        .news-image-3 {
            background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800');
        }

        .news-content {
            padding: 2rem;
        }

        .news-date {
            color: var(--primary-green);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
        }

        .news-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--neutral-800);
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .news-excerpt {
            color: var(--neutral-600);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .news-link {
            color: var(--primary-green);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .news-link:hover {
            color: var(--light-green);
            gap: 0.8rem;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            background: linear-gradient(135deg, #D4A520, #F5C842);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .text-white-75 {
            color: rgba(255, 255, 255, 0.75);
        }

        .text-white-50 {
            color: rgba(255, 255, 255, 0.5);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--accent-gold);
            color: var(--primary-green);
            transform: translateY(-3px);
        }

        .footer-title {
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fade-in,
        .animate-slide-up,
        .animate-slide-left,
        .animate-slide-right {
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-fade-in.visible {
            animation: fadeInUp 0.6s ease forwards;
        }

        .animate-slide-up.visible {
            animation: fadeInUp 0.6s ease forwards;
        }

        .animate-slide-left.visible {
            animation: slideInLeft 0.6s ease forwards;
        }

        .animate-slide-right.visible {
            animation: slideInRight 0.6s ease forwards;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .feature-grid,
            .country-grid,
            .news-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn-primary-custom,
            .btn-outline-custom {
                width: 100%;
            }
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .mb-4 {
            margin-bottom: 1.5rem;
        }

        .mt-5 {
            margin-top: 3rem;
        }

        /* Interactive Map Styles */
        .map-container {
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .west-africa-map {
            width: 100%;
            height: auto;
            display: block;
        }

        .country-path {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .country-path:hover,
        .country-path.hover {
            filter: brightness(1.2);
            stroke: var(--accent-gold);
            stroke-width: 3;
        }

        .country-path.active {
            filter: brightness(0.85);
            stroke: var(--accent-gold);
            stroke-width: 4;
        }

        .country-label {
            pointer-events: none;
            user-select: none;
        }

        .country-info-panel {
            min-height: 400px;
        }

        .map-legend {
            pointer-events: none;
        }

        @media (max-width: 991px) {
            .map-container {
                margin-bottom: 2rem;
            }

            .country-label {
                font-size: 10px !important;
            }
        }
