* { margin: 0; padding: 0; box-sizing: border-box; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; }
        body { background: #f0f4f9; color: #1e293b; line-height: 1.6; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
        nav { background: linear-gradient(135deg, #0b1a33 0%, #1e3a6f 100%); padding: 1rem 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
        nav .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
        .logo { color: #fff; font-weight: 700; font-size: 1.5rem; letter-spacing: 1px; }
        .nav-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
        .nav-links a { color: #cbd5e1; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: 0.2s; }
        .nav-links a:hover { color: #3b82f6; }
        .hero { background: linear-gradient(160deg, #0b1a33, #1e3a6f); color: white; padding: 4rem 0 3rem; text-align: center; position: relative; overflow: hidden; }
        .hero h1 { font-size: 2.6rem; font-weight: 800; margin-bottom: 1rem; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
        .hero p { font-size: 1.1rem; max-width: 800px; margin: 0 auto; opacity: 0.9; }
        .hero-img { margin-top: 2rem; display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
        .hero-img img { width: 200px; height: auto; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
        .section-title { font-size: 2rem; font-weight: 700; color: #0b1a33; margin-bottom: 2rem; text-align: center; position: relative; }
        .section-title::after { content: ''; width: 60px; height: 4px; background: #3b82f6; display: block; margin: 0.5rem auto 0; border-radius: 2px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.8rem; }
        .card { background: white; border-radius: 16px; padding: 1.8rem; box-shadow: 0 8px 20px rgba(0,0,0,0.04); transition: 0.25s ease; border: 1px solid rgba(0,0,0,0.02); }
        .card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(59,130,246,0.1); }
        .card h3 { color: #1e3a6f; margin-bottom: 0.8rem; font-size: 1.25rem; }
        .card p { color: #475569; font-size: 0.95rem; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; background: linear-gradient(135deg, #0b1a33, #1e3a6f); padding: 3rem 2rem; border-radius: 24px; color: white; text-align: center; }
        .stats-item h4 { font-size: 2.4rem; font-weight: 800; color: #3b82f6; margin-bottom: 0.3rem; }
        .stats-item p { font-size: 1rem; opacity: 0.8; }
        .icon-em { font-size: 2rem; margin-right: 0.3rem; }
        .geo-box { background: white; padding: 2rem; border-radius: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); margin: 2rem 0; border-left: 6px solid #3b82f6; }
        .geo-box p { font-size: 1.05rem; color: #1e293b; }
        .faq-item { margin-bottom: 1.5rem; }
        .faq-item details { background: white; border-radius: 14px; padding: 1.2rem 1.8rem; box-shadow: 0 2px 8px rgba(0,0,0,0.03); border: 1px solid #e9edf2; }
        .faq-item summary { font-weight: 600; color: #0b1a33; cursor: pointer; padding: 0.3rem 0; }
        .faq-item p { margin-top: 0.8rem; color: #334155; }
        .news-list { display: grid; gap: 2rem; }
        .news-item { background: white; border-radius: 20px; padding: 1.8rem; box-shadow: 0 4px 12px rgba(0,0,0,0.03); transition: 0.2s; border: 1px solid #edf2f7; }
        .news-item h3 { color: #1e3a6f; margin-bottom: 0.5rem; }
        .news-item .date { color: #64748b; font-size: 0.85rem; margin-bottom: 0.8rem; display: block; }
        .news-item p { color: #334155; }
        .cta-section { background: linear-gradient(135deg, #0b1a33, #1e3a6f); color: white; padding: 3rem 2rem; border-radius: 24px; text-align: center; margin: 3rem 0; }
        .cta-section h2 { font-size: 2rem; margin-bottom: 1rem; }
        .cta-section p { font-size: 1.05rem; max-width: 700px; margin: 0 auto 1.5rem; opacity: 0.9; }
        .btn { display: inline-block; background: #3b82f6; color: white; padding: 0.75rem 2rem; border-radius: 40px; font-weight: 600; text-decoration: none; transition: 0.2s; box-shadow: 0 4px 12px rgba(59,130,246,0.3); }
        .btn:hover { background: #2563eb; }
        .footer { background: #0b1a33; color: #94a3b8; padding: 2.5rem 0 1.5rem; margin-top: 3rem; }
        .footer .container { display: flex; flex-direction: column; gap: 1.5rem; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: center; }
        .footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; transition: 0.2s; }
        .footer-links a:hover { color: #3b82f6; }
        .footer-info { text-align: center; font-size: 0.9rem; border-top: 1px solid #1e3a6f; padding-top: 1.5rem; }
        .img-card { width: 100%; border-radius: 14px; margin: 1rem 0; }
        @media (max-width: 768px) { .hero h1 { font-size: 1.8rem; } .nav-links { gap: 0.8rem; } }