* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background: #f9fafb; color: #1a1a2e; line-height: 1.6; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        header { background: #ffffff; border-bottom: 1px solid #eef2f7; padding: 16px 0; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; }
        .logo { font-size: 1.5rem; font-weight: 700; color: #0b2b4a; letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px; }
        .logo img { height: 32px; width: auto; }
        .nav-links { display: flex; gap: 28px; }
        .nav-links a { text-decoration: none; color: #2d3748; font-size: 0.95rem; font-weight: 500; padding: 6px 0; border-bottom: 2px solid transparent; transition: all 0.2s; }
        .nav-links a:hover { border-bottom-color: #3b82f6; color: #1e40af; }
        h1 { font-size: 2.8rem; font-weight: 700; color: #0b2b4a; text-align: center; padding: 60px 0 20px; letter-spacing: -0.02em; }
        h2 { font-size: 2rem; font-weight: 600; color: #1a1a2e; margin-bottom: 24px; padding-top: 20px; }
        h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; color: #2d3748; }
        .card { background: #ffffff; border-radius: 20px; padding: 32px; border: 1px solid #eaeef5; transition: box-shadow 0.25s; margin-bottom: 32px; }
        .card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.04); }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 28px; }
        img { max-width: 100%; height: auto; border-radius: 16px; display: block; margin: 16px 0; }
        .hero { background: linear-gradient(145deg, #f0f5ff 0%, #ffffff 100%); border-radius: 32px; padding: 60px 48px; display: flex; align-items: center; gap: 48px; flex-wrap: wrap; margin-bottom: 48px; border: 1px solid #e2e8f0; }
        .hero-text { flex: 1; min-width: 280px; }
        .hero-text p { font-size: 1.15rem; color: #4a5568; margin-bottom: 28px; }
        .hero-img { flex: 1; min-width: 280px; }
        .btn { display: inline-block; background: #1e40af; color: #fff; padding: 14px 40px; border-radius: 60px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
        .btn:hover { background: #1e3a8a; }
        .stat-box { text-align: center; padding: 24px; background: #f8faff; border-radius: 20px; border: 1px solid #e6edf5; }
        .stat-number { font-size: 2.8rem; font-weight: 700; color: #1e40af; }
        .stat-label { color: #4a5568; font-size: 0.95rem; margin-top: 4px; }
        .faq-item { border-bottom: 1px solid #eef2f7; padding: 24px 0; }
        .faq-question { font-weight: 600; font-size: 1.1rem; color: #1a1a2e; margin-bottom: 10px; cursor: default; }
        .faq-answer { color: #4a5568; line-height: 1.7; }
        .news-card { padding: 24px; background: #fafcff; border-radius: 16px; border: 1px solid #eaeef5; }
        .news-date { font-size: 0.85rem; color: #6b7280; margin-bottom: 6px; }
        .news-title { font-weight: 600; font-size: 1.15rem; margin-bottom: 8px; color: #0b2b4a; }
        .news-excerpt { color: #4a5568; font-size: 0.95rem; }
        .footer { background: #ffffff; border-top: 1px solid #eef2f7; padding: 48px 0 32px; margin-top: 64px; }
        .footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; }
        .footer-links a { color: #4a5568; text-decoration: none; margin: 0 12px 8px 0; font-size: 0.9rem; }
        .footer-links a:hover { color: #1e40af; }
        .footer-bottom { border-top: 1px solid #eef2f7; margin-top: 32px; padding-top: 24px; text-align: center; font-size: 0.85rem; color: #6b7280; }
        .badge { display: inline-block; background: #eef6ff; color: #1e40af; padding: 4px 16px; border-radius: 40px; font-size: 0.8rem; font-weight: 500; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .header-inner { flex-direction: column; gap: 12px; }
            .nav-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
            .hero { padding: 32px 24px; flex-direction: column; }
            .card { padding: 20px; }
        }