* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f9fafb; color: #1a1a2e; line-height: 1.6; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        nav { background: #ffffff; border-bottom: 1px solid #e5e7eb; padding: 16px 0; position: sticky; top: 0; z-index: 100; }
        .nav-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
        .nav-links a { color: #374151; text-decoration: none; font-weight: 500; font-size: 15px; padding: 6px 12px; border-radius: 8px; transition: background 0.2s; }
        .nav-links a:hover { background: #f0f4ff; color: #1e40af; }
        h1 { font-size: 2.2rem; text-align: center; padding: 40px 0 12px; color: #111827; font-weight: 700; }
        .subtitle { text-align: center; color: #6b7280; max-width: 800px; margin: 0 auto 40px; font-size: 1rem; }
        .geo-section { background: #ffffff; border-radius: 20px; padding: 40px; margin-bottom: 40px; border: 1px solid #e5e7eb; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
        .geo-section p { max-width: 1000px; margin: 0 auto; color: #374151; }
        .grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; margin: 40px 0; }
        .grid-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-4 { grid-template-columns: repeat(4, 1fr); }
        .card { background: #ffffff; border-radius: 16px; padding: 28px; border: 1px solid #eef2f6; transition: transform 0.2s, box-shadow 0.2s; }
        .card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 16px; }
        .card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #111827; }
        .card p { color: #6b7280; font-size: 0.95rem; }
        .badge { display: inline-block; background: #e0f2fe; color: #0369a1; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; margin-bottom: 8px; }
        .cta-button { display: inline-block; background: #1e40af; color: #fff; padding: 14px 36px; border-radius: 40px; text-decoration: none; font-weight: 600; transition: background 0.3s; }
        .cta-button:hover { background: #1e3a8a; }
        .faq-item { border-bottom: 1px solid #eef2f6; padding: 20px 0; }
        .faq-item h4 { cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 1.05rem; font-weight: 600; color: #1f2937; }
        .faq-item p { margin-top: 12px; color: #4b5563; padding-right: 20px; }
        .news-list article { padding: 24px 0; border-bottom: 1px solid #eef2f6; }
        .news-list article:last-child { border-bottom: none; }
        .news-list .date { color: #9ca3af; font-size: 0.85rem; margin-bottom: 4px; }
        .news-list h3 { font-size: 1.15rem; color: #111827; margin-bottom: 8px; }
        .news-list p { color: #6b7280; }
        .footer { background: #ffffff; border-top: 1px solid #e5e7eb; padding: 40px 0; margin-top: 60px; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px; margin-bottom: 20px; }
        .footer-links a { color: #4b5563; text-decoration: none; font-size: 0.9rem; }
        .footer-links a:hover { color: #1e40af; }
        .footer-info { text-align: center; color: #6b7280; font-size: 0.85rem; line-height: 2; }
        .footer-info p { margin: 4px 0; }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            h1 { font-size: 1.6rem; }
        }
        .icon-emoji { font-size: 2rem; display: block; margin-bottom: 12px; }
        .stats-number { font-size: 2.2rem; font-weight: 800; color: #1e40af; }
        .stats-label { color: #6b7280; font-size: 0.9rem; }
        .flex-center { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
        .mt-40 { margin-top: 40px; }
        .mb-40 { margin-bottom: 40px; }