* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: #f0fdf4;
            color: #1e293b;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav {
            background: linear-gradient(135deg, #34d399, #a7f3d0);
            padding: 16px 0;
            box-shadow: 0 4px 20px rgba(52, 211, 153, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
        }
        .nav-links a {
            color: #065f46;
            font-weight: 600;
            text-decoration: none;
            padding: 6px 14px;
            border-radius: 30px;
            transition: all 0.2s;
            background: rgba(255,255,255,0.3);
        }
        .nav-links a:hover {
            background: white;
            color: #0d9488;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #065f46, #34d399);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            margin: 40px 0 20px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }
        .card {
            background: white;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.04);
            transition: all 0.25s;
            border: 1px solid #e2e8f0;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(52, 211, 153, 0.12);
            border-color: #34d399;
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 14px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #065f46;
            margin: 40px 0 16px;
            border-left: 6px solid #34d399;
            padding-left: 16px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            text-align: center;
            margin: 20px 0;
        }
        .stats-item {
            background: white;
            border-radius: 20px;
            padding: 24px 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }
        .stats-item .number {
            font-size: 2.4rem;
            font-weight: 800;
            color: #0d9488;
        }
        .faq-item {
            background: white;
            border-radius: 18px;
            padding: 20px 24px;
            margin: 12px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
        }
        .faq-item h3 {
            color: #065f46;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        .news-card {
            background: white;
            border-radius: 20px;
            padding: 20px;
            margin: 16px 0;
            border-left: 4px solid #34d399;
        }
        .news-date {
            font-size: 0.85rem;
            color: #64748b;
            margin-bottom: 6px;
        }
        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 4px solid #34d399;
        }
        footer a {
            color: #a7f3d0;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 16px;
            margin: 16px 0;
        }
        .geo-text {
            background: white;
            border-radius: 24px;
            padding: 28px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            margin: 20px auto;
            max-width: 900px;
            font-size: 1.05rem;
        }
        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, #34d399, #0d9488);
            color: white;
            font-weight: 700;
            padding: 14px 36px;
            border-radius: 40px;
            text-decoration: none;
            transition: 0.2s;
            box-shadow: 0 4px 16px rgba(52, 211, 153, 0.3);
        }
        .cta-btn:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 24px rgba(52, 211, 153, 0.4);
        }
        @media (max-width: 640px) {
            h1 { font-size: 1.8rem; }
            .nav-links { gap: 8px; }
        }