* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; }
        body { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); min-height: 100vh; color: #1e293b; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        nav { background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); padding: 16px 0; border-bottom: 1px solid rgba(14,165,233,0.15); position: sticky; top: 0; z-index: 100; }
        nav .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
        .logo { font-weight: 700; font-size: 1.5rem; background: linear-gradient(135deg, #0ea5e9, #7dd3fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
        .nav-links a { text-decoration: none; color: #334155; font-weight: 500; padding: 6px 12px; border-radius: 20px; transition: 0.2s; }
        .nav-links a:hover { background: linear-gradient(135deg, #0ea5e9, #7dd3fc); color: white; }
        h1 { font-size: 2.6rem; font-weight: 800; text-align: center; padding: 40px 0 16px; background: linear-gradient(135deg, #0ea5e9, #7dd3fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2; }
        .hero, .stats, .advantages, .story, .services, .testimonials, .cta, .faq, .news, .geo, .partners, .timeline, .vision, .events { background: rgba(255,255,255,0.65); backdrop-filter: blur(8px); border-radius: 32px; padding: 36px 32px; margin: 32px 0; border: 1px solid rgba(14,165,233,0.2); box-shadow: 0 8px 32px rgba(14,165,233,0.06); }
        .section-title { font-size: 2rem; font-weight: 700; margin-bottom: 24px; background: linear-gradient(135deg, #0ea5e9, #7dd3fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
        .card { background: white; border-radius: 20px; padding: 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.04); transition: 0.2s; border: 1px solid rgba(14,165,233,0.08); }
        .card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(14,165,233,0.12); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
        .card h3 { font-size: 1.3rem; margin-bottom: 8px; color: #0c4a6e; }
        .card p { color: #475569; line-height: 1.6; }
        .stat-number { font-size: 2.8rem; font-weight: 800; background: linear-gradient(135deg, #0ea5e9, #7dd3fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .btn { display: inline-block; padding: 12px 28px; border-radius: 40px; background: linear-gradient(135deg, #0ea5e9, #7dd3fc); color: white; font-weight: 600; text-decoration: none; transition: 0.2s; border: none; cursor: pointer; }
        .btn:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(14,165,233,0.3); }
        .faq-item { border-bottom: 1px solid rgba(14,165,233,0.1); padding: 20px 0; }
        .faq-item:last-child { border: none; }
        .faq-question { font-weight: 600; font-size: 1.1rem; color: #0c4a6e; margin-bottom: 8px; cursor: pointer; }
        .faq-answer { color: #475569; line-height: 1.7; }
        .news-item { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(14,165,233,0.08); }
        .news-item:last-child { border: none; }
        .news-date { font-size: 0.85rem; color: #64748b; margin-bottom: 6px; letter-spacing: 0.3px; }
        .news-title { font-size: 1.2rem; font-weight: 600; color: #0c4a6e; margin-bottom: 8px; }
        .news-summary { color: #475569; line-height: 1.7; }
        footer { background: rgba(255,255,255,0.8); backdrop-filter: blur(8px); padding: 40px 0; margin-top: 48px; border-top: 1px solid rgba(14,165,233,0.15); }
        footer .container { display: flex; flex-direction: column; gap: 20px; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
        .footer-links a { color: #334155; text-decoration: none; }
        .footer-links a:hover { color: #0ea5e9; }
        .footer-info { text-align: center; color: #64748b; font-size: 0.9rem; line-height: 1.8; }
        .partner-logos { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; }
        .partner-logos span { background: white; padding: 12px 24px; border-radius: 40px; font-weight: 500; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
        .highlight-badge { display: inline-block; background: linear-gradient(135deg, #0ea5e9, #7dd3fc); color: white; padding: 4px 14px; border-radius: 40px; font-size: 0.8rem; font-weight: 600; }
        @media (max-width: 640px) {
            h1 { font-size: 1.8rem; padding: 24px 0 12px; }
            .hero, .stats, .advantages, .story, .services, .testimonials, .cta, .faq, .news, .geo, .partners, .timeline, .vision, .events { padding: 24px 16px; }
            .nav-links { gap: 10px; }
        }