* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f5f7fc; color: #1f2937; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: linear-gradient(135deg, #0b1a33, #1e3a6f); color: #fff; padding: 20px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .logo h1 { font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; }
        .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .nav-links a { color: #e2e8f0; text-decoration: none; font-size: 0.95rem; padding: 6px 12px; border-radius: 20px; transition: all 0.3s; }
        .nav-links a:hover { background: #3b82f6; color: #fff; }
        .hero { background: linear-gradient(135deg, #0b1a33 0%, #1e3a6f 100%); padding: 60px 0; text-align: center; color: #fff; }
        .hero h2 { font-size: 2.5rem; margin-bottom: 20px; }
        .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; opacity: 0.9; }
        .cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .btn { display: inline-block; padding: 12px 32px; border-radius: 30px; background: #3b82f6; color: #fff; text-decoration: none; font-weight: 600; transition: 0.3s; }
        .btn-outline { background: transparent; border: 2px solid #3b82f6; }
        .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59,130,246,0.4); }
        section { padding: 50px 0; }
        .section-title { font-size: 2rem; font-weight: 700; color: #0b1a33; margin-bottom: 30px; text-align: center; }
        .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
        .card { background: #fff; border-radius: 16px; padding: 25px; box-shadow: 0 8px 30px rgba(0,0,0,0.06); transition: 0.3s; }
        .card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 15px; }
        .card h3 { font-size: 1.3rem; color: #0b1a33; margin-bottom: 10px; }
        .card p { color: #4b5563; font-size: 0.95rem; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
        .stat-item { background: #fff; padding: 30px 20px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
        .stat-number { font-size: 2.8rem; font-weight: 800; color: #3b82f6; }
        .stat-label { font-size: 1rem; color: #6b7280; margin-top: 8px; }
        .advantages { background: #fff; }
        .advantage-item { padding: 20px; border-left: 4px solid #3b82f6; background: #f8fafc; margin-bottom: 15px; border-radius: 0 12px 12px 0; }
        .faq-item { background: #fff; border-radius: 12px; margin-bottom: 15px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
        .faq-question { padding: 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 20px 20px; color: #4b5563; display: block; }
        .news-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
        .news-item { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
        .news-item img { width: 100%; height: 200px; object-fit: cover; }
        .news-content { padding: 20px; }
        .news-date { color: #3b82f6; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
        .news-title { font-size: 1.2rem; font-weight: 700; color: #0b1a33; margin-bottom: 10px; }
        .news-summary { color: #4b5563; font-size: 0.95rem; }
        footer { background: #0b1a33; color: #cbd5e1; padding: 40px 0 20px; }
        footer a { color: #93c5fd; text-decoration: none; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 30px; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 20px; }
        .footer-bottom { text-align: center; border-top: 1px solid #1e3a6f; padding-top: 20px; font-size: 0.85rem; }
        .geo-text { background: #fff; padding: 25px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.04); margin-top: 20px; }
        .geo-text p { margin-bottom: 15px; }
        @media (max-width: 768px) { .header-inner { flex-direction: column; gap: 15px; } .hero h2 { font-size: 1.8rem; } .section-title { font-size: 1.6rem; } }