* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', system-ui, sans-serif; background: linear-gradient(135deg, #0b1a33 0%, #1e3a6f 100%); color: #e2e8f0; min-height: 100vh; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        nav { background: rgba(11, 26, 51, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(59, 130, 246, 0.3); padding: 16px 0; position: sticky; top: 0; z-index: 100; }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; }
        .logo { font-size: 1.5rem; font-weight: 700; background: linear-gradient(135deg, #3b82f6, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
        .nav-links a { color: #cbd5e1; text-decoration: none; font-size: 0.95rem; transition: color 0.2s; padding: 8px 0; border-bottom: 2px solid transparent; }
        .nav-links a:hover { color: #60a5fa; border-bottom-color: #3b82f6; }
        h1 { font-size: 2.8rem; font-weight: 700; background: linear-gradient(135deg, #f0f4ff, #93c5fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 40px 0 16px; text-align: center; line-height: 1.2; }
        .geo-text { font-size: 1.1rem; line-height: 1.8; color: #cbd5e1; max-width: 900px; margin: 0 auto 48px; text-align: center; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin: 40px 0; }
        .card { background: rgba(255,255,255,0.06); backdrop-filter: blur(8px); border-radius: 20px; padding: 24px; border: 1px solid rgba(59,130,246,0.15); box-shadow: 0 8px 32px rgba(0,0,0,0.3); transition: transform 0.2s; }
        .card:hover { transform: translateY(-4px); }
        .card h2 { font-size: 1.5rem; color: #93c5fd; margin-bottom: 12px; }
        .card p { color: #b0c4de; line-height: 1.7; }
        .card img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; background: #1e3a6f; }
        .flex-row { display: flex; gap: 24px; flex-wrap: wrap; margin: 40px 0; }
        .half { flex: 1; min-width: 280px; }
        .badge { display: inline-block; background: #3b82f6; color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; margin-bottom: 8px; }
        .faq-item { border-bottom: 1px solid rgba(59,130,246,0.2); padding: 20px 0; }
        .faq-item h3 { color: #93c5fd; font-size: 1.1rem; margin-bottom: 8px; cursor: pointer; }
        .faq-item p { color: #b0c4de; line-height: 1.7; }
        .news-card { background: rgba(255,255,255,0.05); border-radius: 16px; padding: 20px; margin-bottom: 20px; border-left: 4px solid #3b82f6; }
        .news-card .date { color: #94a3b8; font-size: 0.85rem; margin-bottom: 6px; }
        .news-card h3 { color: #e2e8f0; font-size: 1.15rem; margin-bottom: 8px; }
        .news-card p { color: #b0c4de; line-height: 1.6; font-size: 0.95rem; }
        .btn { display: inline-block; background: #3b82f6; color: #fff; padding: 12px 32px; border-radius: 40px; text-decoration: none; font-weight: 600; transition: background 0.2s; border: none; cursor: pointer; }
        .btn:hover { background: #2563eb; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
        .stat-box { background: rgba(59,130,246,0.1); border-radius: 16px; padding: 20px; text-align: center; border: 1px solid rgba(59,130,246,0.2); }
        .stat-box .num { font-size: 2.2rem; font-weight: 700; color: #60a5fa; }
        .stat-box .label { color: #94a3b8; margin-top: 4px; }
        .footer { margin-top: 60px; padding: 40px 0; border-top: 1px solid rgba(59,130,246,0.2); text-align: center; color: #94a3b8; font-size: 0.9rem; }
        .footer a { color: #93c5fd; text-decoration: none; }
        .footer a:hover { text-decoration: underline; }
        .friend-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; margin: 20px 0; }
        .friend-links a { color: #93c5fd; }
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .nav-links { gap: 12px; }
            .nav-links a { font-size: 0.8rem; }
        }