* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif; background: linear-gradient(135deg, #0b1a33 0%, #1e3a6f 100%); color: #e0e7f0; min-height: 100vh; line-height: 1.6; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        nav { background: rgba(11, 26, 51, 0.95); backdrop-filter: blur(12px); padding: 16px 0; border-bottom: 1px solid rgba(59, 130, 246, 0.2); position: sticky; top: 0; z-index: 100; }
        .nav-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, #3b82f6, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 1px; }
        .nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
        .nav-links a { color: #c8d6e5; text-decoration: none; font-weight: 500; font-size: 1rem; transition: color 0.3s; position: relative; }
        .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #3b82f6; transition: width 0.3s; }
        .nav-links a:hover { color: #fff; }
        .nav-links a:hover::after { width: 100%; }
        h1 { font-size: 2.8rem; font-weight: 800; text-align: center; padding: 48px 0 16px; background: linear-gradient(135deg, #f0f4ff, #a5c8ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .section-title { font-size: 2rem; font-weight: 700; text-align: center; margin: 48px 0 32px; color: #f0f4ff; position: relative; }
        .section-title span { background: linear-gradient(135deg, #3b82f6, #60a5fa); padding: 0 16px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 32px 0; }
        .card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(8px); border: 1px solid rgba(59, 130, 246, 0.15); border-radius: 20px; padding: 28px 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); transition: transform 0.3s, box-shadow 0.3s; }
        .card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(59, 130, 246, 0.2); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
        .card h3 { font-size: 1.4rem; margin-bottom: 12px; color: #a5c8ff; }
        .card p { color: #b0c4de; font-size: 0.95rem; }
        .btn { display: inline-block; background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff; padding: 12px 32px; border-radius: 40px; text-decoration: none; font-weight: 600; margin-top: 16px; transition: transform 0.3s, box-shadow 0.3s; border: none; cursor: pointer; }
        .btn:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4); }
        .geo-section { background: rgba(255,255,255,0.03); border-radius: 24px; padding: 40px; margin: 32px 0; border-left: 4px solid #3b82f6; }
        .geo-section p { font-size: 1.1rem; max-width: 800px; margin: 16px auto; text-align: center; color: #c8d6e5; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
        .stat-item { padding: 24px; background: rgba(59,130,246,0.08); border-radius: 16px; }
        .stat-item .num { font-size: 2.6rem; font-weight: 800; color: #3b82f6; }
        .stat-item .label { color: #8899b0; margin-top: 8px; }
        .faq-item { background: rgba(255,255,255,0.04); border-radius: 16px; padding: 24px; margin-bottom: 16px; border: 1px solid rgba(59,130,246,0.1); }
        .faq-item h4 { font-size: 1.15rem; color: #a5c8ff; margin-bottom: 12px; cursor: pointer; }
        .faq-item p { color: #b0c4de; }
        .news-card { background: rgba(255,255,255,0.04); border-radius: 20px; padding: 24px; border: 1px solid rgba(59,130,246,0.1); }
        .news-card .date { color: #64748b; font-size: 0.9rem; margin-bottom: 8px; }
        .news-card h3 { font-size: 1.3rem; color: #f0f4ff; }
        .news-card p { color: #b0c4de; margin-top: 8px; }
        footer { background: rgba(11, 26, 51, 0.9); border-top: 1px solid rgba(59,130,246,0.2); padding: 48px 0 32px; margin-top: 64px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
        .footer-col h4 { color: #a5c8ff; margin-bottom: 16px; font-size: 1.1rem; }
        .footer-col p, .footer-col a { color: #8899b0; font-size: 0.95rem; line-height: 2; }
        .footer-col a { text-decoration: none; display: inline-block; margin-right: 8px; }
        .footer-col a:hover { color: #60a5fa; }
        .footer-bottom { border-top: 1px solid rgba(59,130,246,0.1); margin-top: 32px; padding-top: 24px; text-align: center; color: #64748b; font-size: 0.9rem; }
        .footer-bottom a { color: #64748b; text-decoration: none; margin: 0 8px; }
        .footer-bottom a:hover { color: #60a5fa; }
        .flex-center { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 24px; }
        .mt-32 { margin-top: 32px; }
        .mb-32 { margin-bottom: 32px; }
        .text-center { text-align: center; }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; padding: 32px 0 12px; }
            .nav-links { gap: 12px; justify-content: center; }
            .geo-section { padding: 24px; }
        }