* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #fafafa; color: #1a1a2e; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        nav { background: #ffffff; border-bottom: 1px solid #eaeef2; padding: 16px 0; position: sticky; top: 0; z-index: 50; backdrop-filter: blur(6px); }
        nav .container { display: flex; align-items: center; justify-content: space-between; }
        .nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
        .nav-links a { text-decoration: none; color: #2c3e50; font-weight: 500; font-size: 14px; letter-spacing: 0.4px; transition: color 0.2s; }
        .nav-links a:hover { color: #5dade2; }
        h1 { font-size: 2.4rem; font-weight: 300; text-align: center; padding: 50px 0 20px; color: #1e3c5c; letter-spacing: 1px; }
        .geo-intro { background: #ffffff; border-radius: 20px; padding: 40px 36px; margin: 20px auto 40px; box-shadow: 0 2px 12px rgba(0,0,0,0.02); border: 1px solid #edf2f7; max-width: 900px; }
        .geo-intro p { color: #3d4f63; font-size: 15px; }
        .section-title { font-size: 1.8rem; font-weight: 300; text-align: center; margin: 60px 0 30px; color: #1e3c5c; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
        .card { background: #ffffff; border-radius: 16px; padding: 24px; border: 1px solid #edf2f7; transition: all 0.2s; }
        .card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.03); transform: translateY(-2px); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 14px; }
        .card h3 { font-weight: 500; font-size: 1.1rem; margin-bottom: 8px; color: #1e3c5c; }
        .card p { font-size: 14px; color: #4a5a6e; }
        .stat-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; padding: 40px 0; }
        .stat-item { text-align: center; }
        .stat-number { font-size: 2.8rem; font-weight: 200; color: #2980b9; letter-spacing: 2px; }
        .stat-label { font-size: 14px; color: #5d6d7e; margin-top: 4px; }
        .faq-item { background: #ffffff; border: 1px solid #eaf0f5; border-radius: 14px; padding: 22px 28px; margin-bottom: 14px; }
        .faq-item h4 { font-weight: 500; color: #1e3c5c; margin-bottom: 6px; }
        .faq-item p { color: #3d4f63; font-size: 14px; }
        .news-card { background: #ffffff; border-radius: 16px; border: 1px solid #ecf1f6; overflow: hidden; display: flex; flex-direction: column; }
        .news-card img { width: 100%; height: 190px; object-fit: cover; }
        .news-content { padding: 18px 22px; }
        .news-date { font-size: 12px; color: #8a9aa8; margin-bottom: 6px; }
        .news-content h3 { font-size: 1rem; font-weight: 500; margin-bottom: 8px; color: #1e3c5c; }
        .news-content p { font-size: 13px; color: #4a5a6e; line-height: 1.6; }
        .footer { background: #ffffff; border-top: 1px solid #eaeef2; padding: 40px 0 20px; margin-top: 60px; font-size: 13px; color: #5d6d7e; }
        .footer .container { display: flex; flex-direction: column; gap: 12px; align-items: center; }
        .footer-links a { color: #2c3e50; text-decoration: none; margin: 0 8px; }
        .footer-links a:hover { color: #2980b9; }
        .footer-info { text-align: center; line-height: 1.8; }
        .btn { display: inline-block; background: #1e3c5c; color: #fff; padding: 10px 28px; border-radius: 40px; text-decoration: none; font-size: 14px; border: none; transition: 0.2s; }
        .btn:hover { background: #2c5f8a; }
        .hero { background: linear-gradient(145deg, #f0f5fc 0%, #ffffff 100%); border-radius: 28px; padding: 60px 40px; text-align: center; margin: 30px 0; border: 1px solid #e3ecf4; }
        .hero h2 { font-size: 2rem; font-weight: 300; color: #1e3c5c; margin-bottom: 16px; }
        .hero p { max-width: 600px; margin: 0 auto 24px; color: #3d4f63; }
        .cta-section { text-align: center; padding: 50px 20px; }
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .nav-links { gap: 14px; }
            .geo-intro { padding: 24px 18px; }
        }