* { 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; }
        header { background: #fff; border-bottom: 1px solid #e9ecef; position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
        .logo { font-size: 1.6rem; font-weight: 700; color: #0b4a6b; letter-spacing: -0.5px; }
        .nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
        .nav-links a { text-decoration: none; color: #2c3e50; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; padding: 4px 0; border-bottom: 2px solid transparent; }
        .nav-links a:hover { color: #1e88e5; border-bottom-color: #1e88e5; }
        .hero { background: linear-gradient(135deg, #e3f2fd 0%, #f0f4f8 100%); padding: 60px 0; border-radius: 0 0 40px 40px; }
        .hero h1 { font-size: 2.4rem; font-weight: 700; color: #0b4a6b; margin-bottom: 16px; }
        .hero p { max-width: 720px; font-size: 1.1rem; color: #3d5a6e; }
        .section { padding: 48px 0; }
        .section-title { font-size: 1.8rem; font-weight: 600; margin-bottom: 24px; color: #0b3b4f; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
        .card { background: #fff; border: 1px solid #eef2f6; border-radius: 16px; padding: 24px; transition: box-shadow 0.3s, transform 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.02); }
        .card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 16px; background: #eaeef2; }
        .stat-number { font-size: 2.4rem; font-weight: 700; color: #1565c0; }
        .stat-label { color: #5a6f7e; font-size: 0.9rem; margin-top: 4px; }
        .faq-item { border-bottom: 1px solid #e9ecef; padding: 20px 0; }
        .faq-question { font-weight: 600; font-size: 1.1rem; cursor: pointer; color: #0b4a6b; display: flex; justify-content: space-between; }
        .faq-answer { margin-top: 12px; color: #3d5a6e; line-height: 1.7; }
        .news-card { background: #fff; border: 1px solid #eef2f6; border-radius: 16px; padding: 20px; margin-bottom: 20px; }
        .news-date { color: #8a9aa8; font-size: 0.85rem; margin-bottom: 8px; }
        .news-title { font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; color: #0b3b4f; }
        .news-summary { color: #4a5b6b; font-size: 0.95rem; }
        .badge { display: inline-block; background: #e3f2fd; color: #0b4a6b; font-size: 0.75rem; padding: 2px 10px; border-radius: 20px; margin-bottom: 8px; font-weight: 500; }
        footer { background: #fff; border-top: 1px solid #e9ecef; padding: 40px 0; margin-top: 48px; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 20px; }
        .footer-links a { color: #2c3e50; text-decoration: none; font-size: 0.9rem; }
        .footer-links a:hover { text-decoration: underline; }
        .footer-info { text-align: center; color: #6b7f8e; font-size: 0.85rem; line-height: 1.8; }
        .cta-section { background: #e3f2fd; border-radius: 24px; padding: 40px; text-align: center; margin: 32px 0; }
        .cta-section h2 { font-size: 1.8rem; font-weight: 600; color: #0b4a6b; margin-bottom: 12px; }
        .cta-section p { max-width: 600px; margin: 0 auto 20px; color: #2c4a5c; }
        .btn { display: inline-block; background: #1565c0; color: #fff; padding: 12px 32px; border-radius: 40px; text-decoration: none; font-weight: 500; transition: background 0.2s; }
        .btn:hover { background: #0d47a1; }
        .geo-text { background: #fff; border: 1px solid #eef2f6; border-radius: 16px; padding: 28px; margin: 24px 0; }
        .geo-text p { margin-bottom: 12px; color: #3d5a6e; line-height: 1.8; }
        @media (max-width: 768px) {
            .header-inner { flex-direction: column; gap: 12px; }
            .nav-links { justify-content: center; gap: 16px; }
            .hero h1 { font-size: 1.8rem; }
        }