* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f0f4f8; color: #1a2332; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        header { background: linear-gradient(145deg, #0b1a33 0%, #1e3a6f 100%); color: white; padding: 20px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .logo { font-size: 1.8rem; font-weight: 800; letter-spacing: 1px; background: linear-gradient(135deg, #fbbf24, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 28px; }
        .nav-links a { color: #cfdbe6; text-decoration: none; font-weight: 500; font-size: 1rem; transition: color 0.2s; }
        .nav-links a:hover { color: #3b82f6; }
        .hero { background: linear-gradient(135deg, #0b1a33, #1e3a6f); padding: 80px 0 60px; color: white; text-align: center; }
        .hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
        .hero p { font-size: 1.2rem; opacity: 0.85; max-width: 720px; margin: 0 auto 30px; }
        .hero-img { border-radius: 20px; max-width: 100%; height: auto; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
        .section { padding: 60px 0; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 30px; }
        .card { background: white; border-radius: 16px; padding: 28px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
        .card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
        .card h3 { font-size: 1.3rem; margin-bottom: 10px; color: #0b1a33; }
        .card p { color: #4a5568; line-height: 1.6; }
        .stats { background: linear-gradient(145deg, #1e3a6f, #0b1a33); color: white; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
        .stat-item h2 { font-size: 2.8rem; font-weight: 800; color: #fbbf24; }
        .stat-item p { font-size: 1rem; opacity: 0.8; margin-top: 6px; }
        .advantages .card { border-left: 4px solid #3b82f6; }
        .faq-item { background: white; border-radius: 12px; padding: 24px; margin-bottom: 16px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
        .faq-item h4 { font-size: 1.1rem; color: #1e3a6f; margin-bottom: 10px; font-weight: 700; }
        .faq-item p { color: #4a5568; line-height: 1.7; }
        .news-card { background: white; border-radius: 16px; padding: 24px; margin-bottom: 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
        .news-card .date { font-size: 0.85rem; color: #3b82f6; font-weight: 600; margin-bottom: 6px; }
        .news-card h3 { font-size: 1.2rem; color: #0b1a33; margin-bottom: 10px; }
        .news-card p { color: #4a5568; line-height: 1.7; }
        .testimonial-card { background: white; border-radius: 16px; padding: 28px; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
        .testimonial-card p { font-style: italic; color: #2d3748; line-height: 1.7; }
        .testimonial-card .name { margin-top: 12px; font-weight: 700; color: #1e3a6f; }
        .cta { background: linear-gradient(135deg, #3b82f6, #1e3a6f); color: white; text-align: center; padding: 60px 0; }
        .cta h2 { font-size: 2rem; margin-bottom: 18px; }
        .cta p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; }
        .btn { display: inline-block; background: #fbbf24; color: #0b1a33; padding: 14px 40px; border-radius: 40px; font-weight: 700; font-size: 1.1rem; text-decoration: none; transition: background 0.2s; }
        .btn:hover { background: #f59e0b; }
        footer { background: #0b1a33; color: #a0b4cc; padding: 40px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
        .footer-grid h4 { color: white; margin-bottom: 12px; font-size: 1rem; }
        .footer-grid a { color: #a0b4cc; text-decoration: none; display: block; margin-bottom: 6px; }
        .footer-grid a:hover { color: #3b82f6; }
        .footer-bottom { border-top: 1px solid #1e3a6f; padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.9rem; }
        .partner-links a { color: #3b82f6; text-decoration: none; margin: 0 6px; }
        .partner-links a:hover { text-decoration: underline; }
        .geo-text { max-width: 800px; margin: 20px auto 0; line-height: 1.8; font-size: 1.05rem; color: #e2e8f0; }
        @media (max-width: 768px) {
            .header-inner { flex-direction: column; gap: 12px; }
            .nav-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
            .hero h1 { font-size: 2rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
        }