
        /* CSS Reset and Base */
        :root {
            --primary-color: #0ea5e9;
            --primary-dark: #0284c7;
            --secondary-color: #8b5cf6;
            --accent-color: #f59e0b;
            --whatsapp-green: #25D366;
            --success-color: #10b981;
            --africa-green: #008751;
            --africa-yellow: #fcd116;
            --africa-red: #ce1126;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --background-light: #f8fafc;
            --white: #ffffff;
            --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
            --border-radius: 10px;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
            width: 100%;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.5;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            width: 100%;
            position: relative;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: clamp(2rem, 5vw, 3rem);
        }
        
        h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
        }
        
        h3 {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
        }
        
        p {
            margin-bottom: 1.25rem;
            font-size: 1rem;
            color: var(--text-light);
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }
        
        .section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--africa-green), var(--africa-yellow));
            border-radius: 2px;
        }
        
        /* Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            outline: none;
            text-align: center;
            white-space: nowrap;
            min-height: 44px;
            touch-action: manipulation;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            box-shadow: var(--shadow-light);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }
        
        .btn-whatsapp {
            background: var(--whatsapp-green);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }
        
        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }
        
        .btn-download {
            background: linear-gradient(135deg, var(--africa-green), var(--africa-yellow));
            color: var(--text-dark);
            font-weight: 700;
            box-shadow: var(--shadow-light);
        }
        
        .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }
        
        .btn-lg {
            padding: 14px 32px;
            font-size: 1rem;
        }
        
        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .floating-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.25rem;
            box-shadow: var(--shadow-medium);
            transition: var(--transition);
            touch-action: manipulation;
        }
        
        .floating-btn:hover {
            transform: scale(1.1);
        }
        
        .floating-whatsapp {
            background: var(--whatsapp-green);
        }
        
        .floating-download {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        
        .logo i {
            color: var(--africa-green);
        }
        
        .logo span {
            color: var(--africa-yellow);
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }
        
        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        .header-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        /* Hero Section */
        .hero {
            padding: 140px 0 60px;
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 700px;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--africa-green), var(--africa-yellow), var(--africa-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: var(--border-radius);
        }
        
        .stat-number {
            display: block;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--africa-green);
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 5px;
        }
        
        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }
        
        /* WhatsApp CTA */
        .whatsapp-cta {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: var(--white);
            padding: 50px 0;
            text-align: center;
        }
        
        /* Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .feature-card {
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--africa-green), var(--africa-yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
        }
        
        /* Income Streams */
        .streams-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .stream-card {
            background: var(--white);
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-light);
            transition: var(--transition);
        }
        
        .stream-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .stream-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--africa-green), var(--africa-yellow));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--white);
            flex-shrink: 0;
        }
        
        /* African Countries */
        .african-countries {
            background: linear-gradient(135deg, var(--africa-green), var(--africa-red));
            color: var(--white);
        }
        
        .countries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }
        
        .country-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
        }
        
        .country-flag {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .testimonial-card {
            background: var(--background-light);
            padding: 25px;
            border-radius: var(--border-radius);
        }
        
        /* FAQ */
        .faq-item {
            background: var(--white);
            margin-bottom: 10px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--africa-green), var(--africa-red));
            color: var(--white);
            text-align: center;
            padding: 60px 0;
        }
        
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }
        
        /* Footer */
        footer {
            background: #111827;
            color: var(--white);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-dark);
            cursor: pointer;
        }
        
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: var(--white);
            transition: var(--transition);
            z-index: 1001;
            padding: 25px;
            overflow-y: auto;
        }
        
        .mobile-nav.active {
            right: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links, .header-buttons {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 120px 0 40px;
            }
            
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .section {
                padding: 40px 0;
            }
            
            .container {
                padding: 0 12px;
            }
            
            .feature-card, .stream-card, .country-card {
                padding: 20px 15px;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.75rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .floating-buttons {
                bottom: 15px;
                right: 15px;
            }
            
            .floating-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .countries-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Android Specific Fixes */
        @media screen and (max-width: 480px) and (-webkit-min-device-pixel-ratio: 1) {
            body {
                -webkit-text-size-adjust: 100%;
                touch-action: pan-y;
            }
            
            .container {
                padding: 0 10px !important;
                max-width: 100% !important;
            }
            
            .hero {
                padding: 110px 0 30px !important;
            }
            
            .section {
                padding: 30px 0 !important;
            }
            
            .feature-card, .stream-card, .level-card {
                margin: 0;
                border-radius: 8px;
            }
            
            .btn {
                padding: 14px 20px;
                min-height: 48px;
                font-size: 1rem;
            }
            
            /* Prevent horizontal overflow */
            html, body {
                max-width: 100%;
                overflow-x: hidden;
            }
            
            /* Fix for Android Chrome */
            * {
                -webkit-overflow-scrolling: touch;
            }
        }
        
        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Touch Feedback */
        .touch-active {
            transform: scale(0.98);
            opacity: 0.9;
        }
        
        /* Print Styles */
        @media print {
            .no-print {
                display: none !important;
            }
        }
