* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: #0b0d1a; color: #e0e6ff; font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        nav { background: rgba(11,13,26,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(59,130,246,0.2); position: sticky; top: 0; z-index: 100; padding: 14px 0; }
        nav .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
        .logo { font-size: 1.4rem; font-weight: 700; background: linear-gradient(135deg, #3b82f6, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
        .nav-links a { color: #c8d2f0; text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: 0.2s; position: relative; }
        .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #3b82f6; transition: 0.3s; }
        .nav-links a:hover { color: #fff; }
        .nav-links a:hover::after { width: 100%; }
        h1 { font-size: 2.8rem; background: linear-gradient(135deg, #fff, #93b4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 40px 0 16px; line-height: 1.2; text-align: center; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; margin: 40px 0; }
        .card { background: rgba(17,21,40,0.6); border-radius: 24px; padding: 28px; border: 1px solid rgba(59,130,246,0.15); backdrop-filter: blur(8px); transition: 0.3s; box-shadow: 0 0 20px rgba(59,130,246,0.05); }
        .card:hover { border-color: #3b82f6; transform: translateY(-6px); box-shadow: 0 16px 40px rgba(59,130,246,0.15); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; margin-bottom: 16px; }
        .card h3 { font-size: 1.3rem; margin-bottom: 12px; color: #b7cbff; }
        .card p { color: #a5b4da; font-size: 0.95rem; }
        .btn { display: inline-block; background: linear-gradient(135deg, #3b82f6, #6366f1); color: #fff; padding: 12px 32px; border-radius: 40px; text-decoration: none; font-weight: 600; transition: 0.3s; box-shadow: 0 4px 20px rgba(59,130,246,0.3); border: none; cursor: pointer; }
        .btn:hover { transform: scale(1.04); box-shadow: 0 8px 30px rgba(59,130,246,0.5); }
        .hero { text-align: center; padding: 60px 0 40px; position: relative; }
        .hero h1 { margin-top: 0; }
        .hero p { font-size: 1.2rem; max-width: 720px; margin: 0 auto; color: #aab9f0; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin: 40px 0; }
        .stat-card { background: rgba(20,28,60,0.5); border-radius: 20px; padding: 24px 16px; text-align: center; border: 1px solid rgba(59,130,246,0.1); }
        .stat-number { font-size: 2.4rem; font-weight: 800; color: #3b82f6; }
        .stat-label { color: #8d9ed8; margin-top: 6px; }
        .section-title { font-size: 2rem; margin: 48px 0 24px; text-align: center; }
        .faq-item { background: rgba(17,21,40,0.5); border-radius: 20px; padding: 24px; margin-bottom: 16px; border-left: 4px solid #3b82f6; }
        .faq-item h4 { color: #b7cbff; font-size: 1.15rem; margin-bottom: 8px; }
        .faq-item p { color: #a5b4da; }
        .news-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
        .news-card { background: rgba(17,21,40,0.6); border-radius: 24px; overflow: hidden; border: 1px solid rgba(59,130,246,0.12); transition: 0.3s; }
        .news-card:hover { border-color: #3b82f6; transform: translateY(-4px); }
        .news-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
        .news-body { padding: 22px; }
        .news-body .date { color: #3b82f6; font-size: 0.85rem; margin-bottom: 6px; }
        .news-body h3 { font-size: 1.2rem; margin-bottom: 8px; color: #d0deff; }
        .news-body p { color: #a5b4da; font-size: 0.95rem; }
        .footer { background: rgba(11,13,26,0.9); border-top: 1px solid rgba(59,130,246,0.15); padding: 40px 0 20px; margin-top: 60px; }
        .footer .container { display: flex; flex-direction: column; gap: 20px; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: center; }
        .footer-links a { color: #7f8fbf; text-decoration: none; font-size: 0.9rem; }
        .footer-links a:hover { color: #3b82f6; }
        .footer-bottom { text-align: center; color: #5a6a9a; font-size: 0.85rem; border-top: 1px solid rgba(59,130,246,0.08); padding-top: 20px; }
        @media (max-width:768px) { h1 { font-size: 2rem; } .nav-links { gap: 12px; } .card-grid { grid-template-columns: 1fr; } .news-list { grid-template-columns: 1fr; } }
        .glow-border { position: relative; }
        .glow-border::before { content: ''; position: absolute; inset: -1px; border-radius: inherit; background: linear-gradient(135deg, #3b82f6, transparent, #6366f1); z-index: -1; opacity: 0.3; }
        .partner-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; padding: 20px 0; }
        .partner-item { background: rgba(20,28,60,0.4); padding: 20px 32px; border-radius: 40px; border: 1px solid rgba(59,130,246,0.1); color: #7f8fbf; }
        .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 24px; }
        .testimonial-card { background: rgba(17,21,40,0.5); border-radius: 20px; padding: 24px; border: 1px solid rgba(59,130,246,0.1); }
        .testimonial-card p { font-style: italic; color: #b0c3f5; }
        .testimonial-card .author { margin-top: 12px; color: #6a7db5; }
        .cta-section { text-align: center; background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(99,102,241,0.05)); border-radius: 40px; padding: 60px 30px; margin: 40px 0; border: 1px solid rgba(59,130,246,0.2); }