* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: linear-gradient(145deg, #0c4a6e 0%, #0d9488 100%); color: #e2e8f0; line-height: 1.7; min-height: 100vh; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        header { background: rgba(12, 74, 110, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 16px 0; position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
        .logo { font-size: 1.6rem; font-weight: 700; background: linear-gradient(135deg, #a7f3d0, #67e8f9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 1px; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 12px 20px; }
        .nav-links a { color: #cbd5e1; text-decoration: none; font-size: 0.95rem; padding: 6px 8px; border-radius: 30px; transition: 0.2s; }
        .nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
        h1 { font-size: 2.8rem; font-weight: 700; margin: 40px 0 20px; background: linear-gradient(135deg, #f0fdfa, #99f6e4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2; }
        .card { background: rgba(255,255,255,0.06); backdrop-filter: blur(16px); border-radius: 28px; padding: 32px 28px; margin: 32px 0; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
        .card h2 { font-size: 1.9rem; margin-bottom: 20px; color: #99f6e4; border-left: 4px solid #0d9488; padding-left: 16px; }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 24px 0; }
        .grid-item { background: rgba(0,0,0,0.2); border-radius: 20px; padding: 20px; transition: 0.3s; }
        .grid-item:hover { transform: translateY(-4px); background: rgba(0,0,0,0.3); }
        .grid-item img { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; margin-bottom: 12px; }
        .btn { display: inline-block; background: #0d9488; color: #fff; padding: 12px 36px; border-radius: 40px; text-decoration: none; font-weight: 600; transition: 0.2s; border: none; cursor: pointer; }
        .btn:hover { background: #0f766e; transform: scale(1.02); }
        .flex-center { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
        .stat-box { text-align: center; background: rgba(255,255,255,0.04); border-radius: 24px; padding: 24px 16px; min-width: 140px; }
        .stat-box .num { font-size: 2.6rem; font-weight: 700; color: #2dd4bf; }
        .faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 18px 0; }
        .faq-item h3 { font-size: 1.2rem; color: #a7f3d0; cursor: pointer; }
        .faq-item p { margin-top: 8px; color: #cbd5e1; }
        .news-card { background: rgba(0,0,0,0.15); border-radius: 20px; padding: 20px; margin: 16px 0; }
        .news-card .date { font-size: 0.85rem; color: #94a3b8; margin-bottom: 6px; }
        .news-card h3 { color: #f0fdfa; margin: 6px 0 10px; }
        .partner-links a { color: #67e8f9; margin: 0 8px; text-decoration: none; }
        .partner-links a:hover { text-decoration: underline; }
        footer { background: rgba(8, 47, 73, 0.8); backdrop-filter: blur(10px); padding: 40px 0 20px; margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.05); }
        footer .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
        footer a { color: #94a3b8; text-decoration: none; }
        footer a:hover { color: #67e8f9; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; margin-top: 32px; font-size: 0.9rem; color: #94a3b8; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .header-inner { flex-direction: column; align-items: flex-start; }
            .card { padding: 20px 16px; }
        }
        .wave-bg { position: relative; overflow: hidden; }
        .wave-bg::before { content: ''; position: absolute; top: -20%; left: -10%; width: 120%; height: 40%; background: radial-gradient(ellipse at 30% 50%, rgba(13,148,136,0.15) 0%, transparent 70%); pointer-events: none; }