* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: #f8f9fa; color: #1a1a2e; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        nav { background: #ffffff; border-bottom: 1px solid #e9ecef; padding: 12px 0; position: sticky; top: 0; z-index: 100; }
        .nav-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
        .nav-links a { color: #2d3436; text-decoration: none; font-size: 15px; font-weight: 500; padding: 6px 12px; border-radius: 8px; transition: background 0.2s; }
        .nav-links a:hover { background: #f0f2f5; }
        h1 { font-size: 2.2rem; font-weight: 700; color: #0b0b1a; text-align: center; padding: 40px 0 16px 0; letter-spacing: -0.02em; }
        .geo-desc { max-width: 800px; margin: 0 auto 32px auto; font-size: 1rem; color: #4a4a5a; text-align: center; }
        .section-title { font-size: 1.5rem; font-weight: 600; margin: 48px 0 24px 0; color: #0b0b1a; border-left: 4px solid #74b9ff; padding-left: 16px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .card { background: #ffffff; border: 1px solid #e9ecef; border-radius: 16px; padding: 20px; transition: box-shadow 0.2s; }
        .card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
        .card h3 { font-size: 1.1rem; margin-bottom: 8px; }
        .card p { color: #636e72; font-size: 0.95rem; }
        .news-item { background: #ffffff; border: 1px solid #e9ecef; border-radius: 14px; padding: 20px; margin-bottom: 16px; }
        .news-item .date { color: #74b9ff; font-size: 0.85rem; margin-bottom: 6px; }
        .news-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
        .news-item p { color: #636e72; font-size: 0.95rem; }
        .faq-item { background: #ffffff; border: 1px solid #e9ecef; border-radius: 14px; padding: 20px; margin-bottom: 12px; }
        .faq-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: #0b0b1a; }
        .faq-item p { color: #636e72; font-size: 0.95rem; }
        footer { background: #ffffff; border-top: 1px solid #e9ecef; padding: 32px 0; margin-top: 48px; text-align: center; font-size: 0.9rem; color: #636e72; }
        footer a { color: #2d3436; text-decoration: none; margin: 0 8px; }
        footer a:hover { text-decoration: underline; }
        .footer-links { margin: 16px 0; }
        .stats-number { font-size: 2rem; font-weight: 700; color: #0b0b1a; }
        .stats-label { color: #636e72; font-size: 0.9rem; }
        .cta-button { display: inline-block; background: #74b9ff; color: #fff; padding: 14px 36px; border-radius: 40px; font-weight: 600; text-decoration: none; margin-top: 20px; transition: background 0.2s; }
        .cta-button:hover { background: #5a9fdf; }
        .flex-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
        .highlight-badge { background: #f0f2f5; border-radius: 40px; padding: 4px 16px; font-size: 0.8rem; color: #2d3436; display: inline-block; margin-bottom: 12px; }
        @media (max-width: 768px) { h1 { font-size: 1.6rem; } .nav-links { gap: 12px; } }