* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; }
        body { background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%); min-height: 100vh; color: #0c4a6e; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        header { background: rgba(255,255,255,0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(14,165,233,0.15); position: sticky; top: 0; z-index: 100; padding: 12px 0; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
        .logo { font-size: 1.8rem; font-weight: 700; background: linear-gradient(135deg, #0ea5e9, #7dd3fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 1px; }
        .nav-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
        .nav-links a { text-decoration: none; color: #0c4a6e; font-weight: 500; font-size: 0.95rem; padding: 6px 0; border-bottom: 2px solid transparent; transition: 0.2s; }
        .nav-links a:hover { border-bottom-color: #0ea5e9; color: #0ea5e9; }
        .hero { padding: 60px 0 40px; text-align: center; }
        .hero h1 { font-size: 2.6rem; font-weight: 800; margin-bottom: 12px; background: linear-gradient(135deg, #0ea5e9, #38bdf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero p { font-size: 1.1rem; color: #1e3a5f; max-width: 720px; margin: 0 auto 32px; line-height: 1.7; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 40px 0; }
        .card { background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 24px; padding: 28px 24px; box-shadow: 0 8px 32px rgba(14,165,233,0.08); border: 1px solid rgba(255,255,255,0.5); transition: 0.3s; }
        .card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(14,165,233,0.15); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; margin-bottom: 16px; }
        .card h3 { font-size: 1.3rem; margin-bottom: 8px; color: #0369a1; }
        .card p { color: #1e3a5f; line-height: 1.6; }
        .section-title { font-size: 2rem; font-weight: 700; margin: 56px 0 24px; color: #0369a1; text-align: center; }
        .faq-item { background: rgba(255,255,255,0.5); backdrop-filter: blur(8px); border-radius: 20px; padding: 24px; margin-bottom: 16px; border: 1px solid rgba(14,165,233,0.1); }
        .faq-item h4 { font-size: 1.1rem; font-weight: 600; color: #0ea5e9; margin-bottom: 8px; }
        .faq-item p { color: #1e3a5f; line-height: 1.7; }
        .news-card { background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); border-radius: 24px; padding: 24px; box-shadow: 0 4px 20px rgba(14,165,233,0.06); margin-bottom: 24px; }
        .news-card .date { font-size: 0.85rem; color: #0ea5e9; font-weight: 500; margin-bottom: 4px; }
        .news-card h3 { font-size: 1.25rem; color: #0369a1; margin-bottom: 8px; }
        .news-card p { color: #1e3a5f; line-height: 1.7; }
        .footer { background: rgba(255,255,255,0.7); backdrop-filter: blur(16px); border-top: 1px solid rgba(14,165,233,0.15); padding: 40px 0 24px; margin-top: 64px; }
        .footer-inner { display: flex; flex-direction: column; gap: 16px; text-align: center; font-size: 0.9rem; color: #1e3a5f; }
        .footer a { color: #0ea5e9; text-decoration: none; margin: 0 8px; }
        .footer a:hover { text-decoration: underline; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
        .btn { display: inline-block; background: linear-gradient(135deg, #0ea5e9, #7dd3fc); color: white; padding: 12px 32px; border-radius: 40px; font-weight: 600; text-decoration: none; transition: 0.3s; box-shadow: 0 4px 16px rgba(14,165,233,0.3); }
        .btn:hover { transform: scale(1.03); box-shadow: 0 8px 28px rgba(14,165,233,0.4); }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin: 32px 0; }
        .stat-item { text-align: center; background: rgba(255,255,255,0.5); backdrop-filter: blur(8px); border-radius: 20px; padding: 24px 12px; }
        .stat-item .num { font-size: 2.2rem; font-weight: 800; color: #0ea5e9; }
        .stat-item .label { color: #1e3a5f; margin-top: 4px; }
        .partner-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin: 32px 0; }
        .partner-logos a { background: rgba(255,255,255,0.4); border-radius: 16px; padding: 12px 20px; border: 1px solid rgba(14,165,233,0.1); color: #0369a1; text-decoration: none; font-weight: 500; transition: 0.2s; }
        .partner-logos a:hover { background: #0ea5e9; color: white; }
        @media (max-width: 640px) { .hero h1 { font-size: 1.8rem; } .nav-links { gap: 12px; } .nav-links a { font-size: 0.85rem; } }