* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
            color: #1f2937;
            line-height: 1.6;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 12px 0;
            border-bottom: 2px solid rgba(52,211,153,0.2);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .logo {
            font-size: 1.4rem;
            font-weight: 700;
            background: linear-gradient(135deg, #34d399, #059669);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
        }
        .nav-links a {
            text-decoration: none;
            color: #374151;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 12px;
            border-radius: 20px;
            transition: all 0.3s;
            background: rgba(52,211,153,0.08);
        }
        .nav-links a:hover {
            background: #34d399;
            color: white;
        }
        h1 {
            font-size: 2.2rem;
            font-weight: 800;
            text-align: center;
            padding: 40px 0 20px;
            background: linear-gradient(135deg, #065f46, #34d399);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            color: #065f46;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #34d399;
            margin: 10px auto 0;
            border-radius: 2px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.04);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(52,211,153,0.15);
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(52,211,153,0.15);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
            background: #e5e7eb;
        }
        .card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
            color: #065f46;
        }
        .card p {
            color: #4b5563;
            font-size: 0.95rem;
        }
        .hero {
            background: linear-gradient(135deg, #d1fae5, #a7f3d0);
            border-radius: 24px;
            padding: 50px 30px;
            text-align: center;
            margin: 20px 0;
        }
        .hero h2 {
            font-size: 2rem;
            color: #065f46;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 24px;
            color: #374151;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            background: #34d399;
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s, transform 0.2s;
            box-shadow: 0 4px 12px rgba(52,211,153,0.3);
        }
        .btn:hover {
            background: #059669;
            transform: scale(1.03);
        }
        .geo-intro {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin: 20px 0;
            box-shadow: 0 2px 12px rgba(0,0,0,0.03);
        }
        .geo-intro p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #374151;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            text-align: center;
        }
        .stat-item {
            background: white;
            padding: 28px 16px;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            border: 1px solid rgba(52,211,153,0.1);
        }
        .stat-item .number {
            font-size: 2.4rem;
            font-weight: 800;
            color: #34d399;
        }
        .stat-item .label {
            font-size: 0.95rem;
            color: #6b7280;
            margin-top: 4px;
        }
        .faq-item {
            background: white;
            border-radius: 14px;
            padding: 20px 24px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            border: 1px solid rgba(52,211,153,0.1);
        }
        .faq-item h4 {
            font-size: 1.05rem;
            color: #065f46;
            margin-bottom: 8px;
            cursor: default;
        }
        .faq-item p {
            color: #4b5563;
            font-size: 0.95rem;
        }
        .news-card {
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            border: 1px solid rgba(52,211,153,0.1);
            transition: transform 0.3s;
        }
        .news-card:hover {
            transform: translateY(-3px);
        }
        .news-card .date {
            font-size: 0.85rem;
            color: #9ca3af;
            margin-bottom: 6px;
        }
        .news-card h3 {
            font-size: 1.1rem;
            color: #065f46;
            margin-bottom: 8px;
        }
        .news-card p {
            font-size: 0.95rem;
            color: #4b5563;
        }
        .footer {
            background: #064e3b;
            color: #d1fae5;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer a {
            color: #a7f3d0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: #34d399;
        }
        .footer .links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
            margin-bottom: 20px;
        }
        .footer .info {
            text-align: center;
            font-size: 0.9rem;
            line-height: 1.8;
        }
        .footer .copyright {
            text-align: center;
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 1.6rem; padding: 24px 0 12px; }
            .section-title { font-size: 1.4rem; }
            .hero h2 { font-size: 1.5rem; }
            .header-inner { flex-direction: column; align-items: center; }
            .nav-links { justify-content: center; }
        }