* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: linear-gradient(145deg, #f8fafc 0%, #f1f4f9 100%);
            color: #1a2634;
            line-height: 1.6;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.04);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 16px 0;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            color: #1e3a5f;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #0077b6;
            border-bottom-color: #0077b6;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #0b1a2a;
            letter-spacing: -0.01em;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: #0b1a2a;
        }
        .section {
            padding: 64px 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .card {
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.04);
            border-radius: 20px;
            padding: 28px;
            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 32px rgba(0,0,0,0.05);
        }
        .card img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 16px;
            object-fit: cover;
        }
        .pill {
            display: inline-block;
            background: #e8f0fe;
            color: #1e5a8a;
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 40px;
            font-weight: 500;
            margin-bottom: 12px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #0077b6;
            line-height: 1.2;
        }
        .cta-btn {
            display: inline-block;
            background: #0077b6;
            color: white;
            padding: 14px 36px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            transition: background 0.2s;
        }
        .cta-btn:hover {
            background: #005f94;
        }
        footer {
            background: #0f1a2b;
            color: #b0c4d9;
            padding: 52px 0 28px;
            margin-top: 48px;
        }
        footer a {
            color: #8fb5d9;
            text-decoration: none;
            transition: color 0.2s;
        }
        footer a:hover {
            color: #cde0f3;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            justify-content: center;
            margin-bottom: 24px;
        }
        .footer-info {
            text-align: center;
            font-size: 0.85rem;
            color: #7e95ae;
        }
        .footer-info p {
            margin: 8px 0;
        }
        .faq-item {
            padding: 20px 0;
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }
        .faq-item strong {
            display: block;
            font-size: 1.05rem;
            margin-bottom: 8px;
            color: #1a2c3e;
        }
        .date-tag {
            font-size: 0.8rem;
            color: #6b7f94;
            margin-bottom: 6px;
        }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            h1 { font-size: 1.8rem; }
            header .container { flex-direction: column; gap: 12px; }
            .nav-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
        }