* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(145deg, #0b1a33 0%, #1e3a6f 100%); color: #e0e7f0; min-height: 100vh; display: flex; flex-direction: column; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        header { background: rgba(11, 26, 51, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(59, 130, 246, 0.25); position: sticky; top: 0; z-index: 50; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .logo { font-size: 1.6rem; font-weight: 700; letter-spacing: 1px; background: linear-gradient(135deg, #3b82f6, #a5b4fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 28px; }
        .nav-links a { color: #cbd5e1; text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
        .nav-links a:hover { color: #3b82f6; }
        .hero { padding: 80px 0 60px; text-align: center; background: radial-gradient(circle at 20% 30%, #1e3a6f, #0b1a33); }
        .hero h1 { font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
        .hero p { font-size: 1.2rem; max-width: 780px; margin: 0 auto 28px; color: #94a3b8; }
        .geo-text { background: rgba(30, 58, 111, 0.5); border-left: 4px solid #3b82f6; padding: 24px 32px; border-radius: 12px; margin: 40px 0; font-size: 1.05rem; line-height: 1.8; }
        .section-title { font-size: 2rem; font-weight: 600; margin-bottom: 36px; position: relative; display: inline-block; }
        .section-title::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 60%; height: 3px; background: #3b82f6; border-radius: 4px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin: 40px 0; }
        .card { background: rgba(255,255,255,0.05); backdrop-filter: blur(6px); border: 1px solid rgba(59,130,246,0.15); border-radius: 20px; padding: 28px; box-shadow: 0 12px 28px -8px rgba(0,0,0,0.4); transition: transform 0.2s, box-shadow 0.2s; }
        .card:hover { transform: translateY(-6px); box-shadow: 0 20px 36px -12px rgba(0,0,0,0.6); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; background: #1e293b; }
        .card h3 { font-size: 1.3rem; margin-bottom: 12px; }
        .card p { color: #94a3b8; line-height: 1.6; }
        .stat-row { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 20px; padding: 40px 0; }
        .stat-item { text-align: center; flex: 1 1 140px; }
        .stat-number { font-size: 2.8rem; font-weight: 700; color: #3b82f6; }
        .stat-label { color: #94a3b8; margin-top: 6px; }
        .news-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; margin: 30px 0 60px; }
        .news-item { background: rgba(255,255,255,0.04); border-radius: 18px; padding: 24px; border: 1px solid rgba(59,130,246,0.1); }
        .news-item .date { color: #64748b; font-size: 0.9rem; margin-bottom: 8px; }
        .news-item h4 { font-size: 1.2rem; margin-bottom: 12px; }
        .news-item p { color: #94a3b8; line-height: 1.7; }
        .faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 28px; margin: 30px 0 60px; }
        .faq-item { background: rgba(255,255,255,0.03); border-radius: 18px; padding: 24px; border-left: 4px solid #3b82f6; }
        .faq-item h4 { font-size: 1.15rem; margin-bottom: 12px; color: #f1f5f9; }
        .faq-item p { color: #94a3b8; line-height: 1.7; }
        .advantages { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; }
        .advantage-card { background: rgba(0,0,0,0.2); border-radius: 20px; padding: 28px 20px; text-align: center; border: 1px solid rgba(59,130,246,0.2); }
        .advantage-card .icon { font-size: 2.8rem; margin-bottom: 12px; }
        .partner-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; padding: 20px 0; }
        .partner-logos span { font-size: 1rem; background: rgba(255,255,255,0.06); padding: 10px 20px; border-radius: 40px; }
        .cta { background: linear-gradient(135deg, #1e3a6f, #0b1a33); border-radius: 32px; padding: 48px; text-align: center; margin: 40px 0; border: 1px solid rgba(59,130,246,0.2); }
        .cta h2 { font-size: 2rem; margin-bottom: 16px; }
        .cta p { margin-bottom: 28px; color: #94a3b8; max-width: 600px; margin-left: auto; margin-right: auto; }
        .btn { display: inline-block; background: #3b82f6; color: #fff; padding: 14px 40px; border-radius: 60px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
        .btn:hover { background: #2563eb; }
        footer { background: rgba(0,0,0,0.5); border-top: 1px solid rgba(59,130,246,0.15); padding: 40px 0 20px; margin-top: 60px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 32px; margin-bottom: 28px; }
        .footer-links a { color: #94a3b8; text-decoration: none; display: block; margin: 6px 0; font-size: 0.9rem; }
        .footer-links a:hover { color: #3b82f6; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; text-align: center; color: #64748b; font-size: 0.85rem; }
        .footer-bottom a { color: #94a3b8; text-decoration: none; margin: 0 8px; }
        .footer-bottom a:hover { color: #3b82f6; }
        .friend-links { margin: 16px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
        .friend-links a { color: #94a3b8; text-decoration: none; }
        .friend-links a:hover { color: #3b82f6; }
        @media (max-width: 768px) {
            .header-inner { flex-direction: column; height: auto; padding: 16px 0; gap: 12px; }
            .nav-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
            .hero h1 { font-size: 2rem; }
            .card-grid, .news-list, .faq-grid { grid-template-columns: 1fr; }
        }