* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; background: #f8f9fc; color: #1a1a2e; line-height: 1.7; }
        a { color: #0a7bff; text-decoration: none; transition: opacity 0.2s; }
        a:hover { opacity: 0.8; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: #ffffff; border-bottom: 1px solid #e9ecef; padding: 16px 0; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(6px); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
        .logo { font-size: 1.6rem; font-weight: 700; color: #0a7bff; letter-spacing: -0.5px; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 10px 24px; }
        .nav-links a { font-size: 0.95rem; color: #2d3748; font-weight: 500; border-bottom: 2px solid transparent; padding-bottom: 4px; }
        .nav-links a:hover { border-bottom-color: #0a7bff; }
        h1 { font-size: 2.2rem; font-weight: 800; color: #0a1628; margin: 40px 0 12px; letter-spacing: -0.3px; }
        .geo-description { background: #ffffff; border-radius: 16px; padding: 28px 32px; margin: 24px 0; border: 1px solid #eef1f5; box-shadow: 0 2px 8px rgba(0,0,0,0.02); font-size: 1.05rem; color: #3a3f4b; }
        section { margin: 48px 0; }
        .section-title { font-size: 1.7rem; font-weight: 700; margin-bottom: 24px; color: #0a1628; position: relative; display: inline-block; }
        .section-title::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 48px; height: 3px; background: #0a7bff; border-radius: 2px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
        .card { background: #ffffff; border: 1px solid #edf2f7; border-radius: 14px; padding: 24px; transition: transform 0.15s, box-shadow 0.2s; }
        .card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 16px; background: #f0f2f5; }
        .card h3 { font-size: 1.2rem; margin-bottom: 8px; }
        .card p { color: #5a6270; font-size: 0.95rem; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; background: #ffffff; border: 1px solid #edf2f7; border-radius: 16px; padding: 32px; }
        .stat-item { text-align: center; }
        .stat-number { font-size: 2.2rem; font-weight: 700; color: #0a7bff; }
        .stat-label { color: #6b7280; font-size: 0.95rem; margin-top: 4px; }
        .news-list { list-style: none; }
        .news-item { background: #ffffff; border: 1px solid #edf2f7; border-radius: 14px; padding: 20px 24px; margin-bottom: 16px; transition: background 0.2s; }
        .news-item:hover { background: #fafcff; }
        .news-item .date { font-size: 0.85rem; color: #8890a0; margin-bottom: 6px; }
        .news-item h3 { font-size: 1.15rem; margin-bottom: 6px; }
        .news-item p { color: #4a5568; }
        .faq-item { margin-bottom: 24px; }
        .faq-question { font-weight: 600; font-size: 1.1rem; cursor: pointer; background: #ffffff; border: 1px solid #edf2f7; border-radius: 12px; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 16px 20px; background: #fafcff; border-radius: 0 0 12px 12px; border: 1px solid #edf2f7; border-top: 0; color: #3a3f4b; line-height: 1.8; }
        footer { background: #ffffff; border-top: 1px solid #e9ecef; padding: 40px 0 24px; margin-top: 60px; }
        .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
        .footer-links a { margin: 0 8px; color: #4a5568; font-size: 0.9rem; }
        .footer-bottom { border-top: 1px solid #edf2f7; padding-top: 20px; text-align: center; color: #8890a0; font-size: 0.85rem; }
        .friend-links { margin: 16px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
        .friend-links a { color: #0a7bff; font-size: 0.9rem; }
        @media (max-width: 768px) {
            h1 { font-size: 1.7rem; }
            .header-inner { flex-direction: column; align-items: flex-start; }
            .nav-links { width: 100%; justify-content: flex-start; }
        }