* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, system-ui, sans-serif; background: #f4fdf9; color: #1a2b3c; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: linear-gradient(135deg, #34d399 0%, #a7f3d0 100%); padding: 16px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.04); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .logo { font-weight: 700; font-size: 1.5rem; color: #065f46; letter-spacing: 1px; }
        .nav-links a { color: #065f46; text-decoration: none; padding: 8px 16px; border-radius: 30px; font-weight: 500; transition: 0.2s; }
        .nav-links a:hover { background: rgba(255,255,255,0.6); }
        h1 { font-size: 2.2rem; padding: 40px 0 16px; color: #065f46; text-align: center; }
        h2 { font-size: 1.8rem; color: #0f766e; margin: 32px 0 16px; border-left: 6px solid #34d399; padding-left: 16px; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        .card { background: white; border-radius: 20px; padding: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); transition: 0.2s; }
        .card:hover { box-shadow: 0 8px 24px rgba(52,211,153,0.12); }
        img { max-width: 100%; border-radius: 16px; margin: 8px 0; display: block; }
        .geo-intro { background: #ecfdf5; border-radius: 24px; padding: 28px; margin: 24px 0; font-size: 1.05rem; }
        .news-item { margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
        .news-item h3 { font-size: 1.3rem; color: #0f766e; }
        .news-date { font-size: 0.85rem; color: #6b7280; margin: 4px 0 8px; display: inline-block; background: #e6f7f0; padding: 2px 12px; border-radius: 20px; }
        .faq-item { margin-bottom: 24px; }
        .faq-question { font-weight: 600; color: #065f46; margin-bottom: 6px; font-size: 1.1rem; }
        .footer { background: #0f172a; color: #cbd5e1; padding: 40px 0 20px; margin-top: 48px; }
        .footer a { color: #34d399; text-decoration: none; }
        .footer a:hover { text-decoration: underline; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: center; margin: 16px 0; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 16px; text-align: center; }
        .stat-number { font-size: 2.2rem; font-weight: 700; color: #34d399; }
        .hero { background: linear-gradient(145deg, #d1fae5, #bcf0da); border-radius: 32px; padding: 40px 32px; margin: 20px 0; }
        .hero h2 { border-left: none; text-align: center; font-size: 2rem; }
        .btn { display: inline-block; background: #34d399; color: #064e3b; padding: 12px 28px; border-radius: 40px; font-weight: 600; text-decoration: none; transition: 0.2s; }
        .btn:hover { background: #10b981; transform: scale(1.02); }
        .center-text { text-align: center; }
        .flex-center { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
        @media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } h1 { font-size: 1.8rem; } }
        #faq, #news-list { scroll-margin-top: 80px; }
        section { scroll-margin-top: 80px; }