 :root {
            --primary-green: #10B981;
            --primary-dark: #111827;
            --secondary-green: #34D399;
            --accent-green: #059669;
            --light-bg: #F9FAFB;
            --card-bg: #FFFFFF;
            --text-dark: #1F2937;
            --text-light: #FFFFFF;
            --border-color: #E5E7EB;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        body {
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--light-bg);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: var(--primary-dark);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-green);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background-color: var(--primary-green);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-weight: bold;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-light);
        }
        
        .logo-text span {
            color: var(--primary-green);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 16px;
        }
        
        nav a:hover {
            color: var(--primary-green);
        }
        
        .header-btn {
            background-color: var(--primary-green);
            color: var(--primary-dark);
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .header-btn:hover {
            background-color: var(--secondary-green);
        }
        
        /* Hero Banner */
        .hero-banner {
            background: linear-gradient(rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.9)), 
                        url('https://images.unsplash.com/photo-1611605698323-b1e99cfd37ea?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            text-align: center;
            color: var(--text-light);
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero-tag {
            display: inline-block;
            background-color: var(--primary-green);
            color: var(--primary-dark);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 25px;
        }
        
        .hero-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 20px;
            color: #D1D5DB;
            margin-bottom: 35px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-btn {
            display: inline-block;
            background-color: var(--primary-green);
            color: var(--primary-dark);
            padding: 16px 40px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: background-color 0.3s;
            margin-top: 20px;
        }
        
        .hero-btn:hover {
            background-color: var(--secondary-green);
        }
        
        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background-color: var(--primary-dark);
            color: var(--text-light);
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }
        
        .stat-item {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 18px;
            color: #D1D5DB;
        }
        
        /* Opportunities Section */
        .opportunities-section {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-tag {
            display: inline-block;
            color: var(--primary-green);
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-dark);
        }
        
        .section-subtitle {
            font-size: 18px;
            color: #6B7280;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .opportunities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .opportunity-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--border-color);
        }
        
        .opportunity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .opportunity-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            background-color: #F3F4F6;
        }
        
        .opportunity-content {
            padding: 30px;
        }
        
        .opportunity-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
        }
        
        .opportunity-desc {
            color: #6B7280;
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .opportunity-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #6B7280;
        }
        
        .feature i {
            color: var(--primary-green);
        }
        
        .opportunity-btn {
            display: inline-block;
            background-color: var(--primary-green);
            color: var(--primary-dark);
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .opportunity-btn:hover {
            background-color: var(--secondary-green);
        }
        
        /* How It Works */
        .process-section {
            padding: 100px 0;
            background-color: var(--primary-dark);
            color: var(--text-light);
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 60px;
        }
        
        .process-step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 30px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary-green);
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 25px;
        }
        
        .step-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        .step-desc {
            color: #D1D5DB;
            line-height: 1.7;
        }
        
        /* Compliance Section */
        .compliance-section {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        
        .compliance-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--primary-green);
        }
        
        .compliance-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--text-dark);
            text-align: center;
        }
        
        .compliance-content {
            font-size: 16px;
            line-height: 1.8;
            color: #6B7280;
        }
        
        .compliance-points {
            margin-top: 30px;
        }
        
        .compliance-point {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .compliance-point:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .point-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            flex-shrink: 0;
        }
        
        .point-content h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-dark);
        }
        
        .point-content p {
            color: #6B7280;
            font-size: 15px;
            line-height: 1.6;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background-color: var(--primary-dark);
            text-align: center;
            color: var(--text-light);
        }
        
        .cta-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 25px;
        }
        
        .cta-subtitle {
            font-size: 20px;
            color: #D1D5DB;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-btn {
            display: inline-block;
            background-color: var(--primary-green);
            color: var(--primary-dark);
            padding: 18px 45px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: background-color 0.3s;
        }
        
        .cta-btn:hover {
            background-color: var(--secondary-green);
        }
        
        /* Footer */
        footer {
            background-color: #0F172A;
            color: var(--text-light);
            padding: 80px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .footer-logo span {
            color: var(--primary-green);
        }
        
        .footer-text {
            color: #94A3B8;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: #1E293B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--primary-green);
            color: var(--primary-dark);
        }
        
        .footer-heading {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--text-light);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #94A3B8;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-green);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94A3B8;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 38px;
            }
            
            .section-title {
                font-size: 34px;
            }
            
            .process-steps {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 20px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .opportunities-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .compliance-container {
                padding: 30px;
            }
            
            .cta-title {
                font-size: 32px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 28px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .cta-title {
                font-size: 28px;
            }
        }
        
        /* Hidden section for Google Ads content */
        .keywords-section {
            display: none;
        }
        
        /* Fallback image styling */
        .img-fallback {
            width: 100%;
            height: 240px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
        }