* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; background: #f4f6f9; color: #1a1a2e; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        nav { background: #ffffff; border-bottom: 1px solid #eaeef2; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
        .nav-links { display: flex; gap: 28px; align-items: center; }
        .nav-links a { text-decoration: none; color: #2d3748; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
        .nav-links a:hover { color: #3182ce; }
        .nav-brand { font-weight: 700; font-size: 1.2rem; color: #1a202c; letter-spacing: 0.3px; }
        h1 { font-size: 2.4rem; font-weight: 700; margin: 40px 0 16px; color: #1a202c; text-align: center; line-height: 1.3; }
        .geo-text { max-width: 900px; margin: 0 auto 48px; text-align: center; color: #4a5568; font-size: 1.05rem; }
        .section-title { font-size: 1.8rem; font-weight: 600; margin-bottom: 32px; color: #1a202c; text-align: center; letter-spacing: -0.3px; }
        .cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin: 32px 0; }
        .card { background: #ffffff; border-radius: 20px; padding: 28px 24px; border: 1px solid #e2e8f0; box-shadow: 0 4px 16px rgba(0,0,0,0.02); transition: transform 0.2s, box-shadow 0.2s; }
        .card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.04); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; background: #edf2f7; }
        .card h3 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 600; }
        .card p { color: #4a5568; font-size: 0.95rem; }
        .badge { display: inline-block; background: #ebf4ff; color: #2b6cb0; font-size: 0.75rem; padding: 4px 12px; border-radius: 40px; font-weight: 500; margin-bottom: 10px; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; margin: 40px 0; }
        .stat-item { background: #ffffff; border-radius: 16px; padding: 28px 16px; border: 1px solid #e2e8f0; }
        .stat-number { font-size: 2.6rem; font-weight: 700; color: #2b6cb0; line-height: 1.2; }
        .stat-label { color: #718096; font-size: 0.95rem; margin-top: 8px; }
        .faq-item { border-bottom: 1px solid #e2e8f0; padding: 20px 0; }
        .faq-question { font-weight: 600; font-size: 1.05rem; margin-bottom: 8px; color: #2d3748; }
        .faq-answer { color: #4a5568; line-height: 1.8; }
        .footer { background: #ffffff; border-top: 1px solid #e2e8f0; padding: 40px 0 20px; margin-top: 64px; }
        .footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
        .footer-col h4 { font-weight: 600; margin-bottom: 12px; color: #1a202c; }
        .footer-col a { display: block; color: #4a5568; text-decoration: none; margin-bottom: 6px; font-size: 0.9rem; }
        .footer-col a:hover { color: #2b6cb0; }
        .footer-bottom { border-top: 1px solid #e2e8f0; padding-top: 20px; margin-top: 28px; text-align: center; font-size: 0.85rem; color: #718096; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
        .footer-bottom a { color: #4a5568; text-decoration: none; }
        .footer-bottom a:hover { color: #2b6cb0; }
        .news-list-item { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid #e2e8f0; }
        .news-list-item img { width: 160px; height: 110px; object-fit: cover; border-radius: 12px; flex-shrink: 0; background: #edf2f7; }
        .news-date { font-size: 0.8rem; color: #a0aec0; margin-bottom: 6px; }
        .news-title { font-weight: 600; font-size: 1.1rem; margin-bottom: 6px; color: #1a202c; }
        .news-desc { color: #4a5568; font-size: 0.9rem; }
        .partner-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin: 32px 0; }
        .partner-item { text-align: center; padding: 16px 24px; background: #ffffff; border-radius: 12px; border: 1px solid #e2e8f0; min-width: 120px; font-weight: 500; color: #2d3748; }
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .nav-links { gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
            .nav-links a { font-size: 0.85rem; }
            .news-list-item { flex-direction: column; }
            .news-list-item img { width: 100%; height: 180px; }
        }