* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: linear-gradient(135deg, #1a0a2e 0%, #4a1a6f 100%); color: #f0e6ff; min-height: 100vh; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        nav { background: rgba(26, 10, 46, 0.9); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.08); position: sticky; top: 0; z-index: 100; padding: 12px 0; }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
        .logo { font-size: 1.3rem; font-weight: 700; background: linear-gradient(90deg, #d4a0ff, #b57aff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
        .nav-links a { color: #d0c0f0; text-decoration: none; font-size: 0.95rem; padding: 6px 14px; border-radius: 30px; transition: 0.3s; }
        .nav-links a:hover { background: rgba(180, 130, 255, 0.2); color: #fff; }
        h1 { font-size: 2.8rem; font-weight: 800; background: linear-gradient(135deg, #f0e0ff, #c99aff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; }
        h2 { font-size: 2rem; font-weight: 700; margin-bottom: 24px; color: #e4d0ff; border-left: 4px solid #9f6bff; padding-left: 16px; }
        .hero-section { padding: 70px 0 50px; text-align: center; position: relative; overflow: hidden; }
        .hero-section p { max-width: 800px; margin: 0 auto 30px; font-size: 1.1rem; color: #cfbef0; }
        .btn { display: inline-block; background: linear-gradient(135deg, #7a3ce0, #a06aff); color: #fff; padding: 14px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; letter-spacing: 0.5px; box-shadow: 0 8px 25px rgba(122, 60, 224, 0.4); transition: 0.3s; }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(122, 60, 224, 0.6); }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
        .glass-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 28px 22px; transition: 0.4s; }
        .glass-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.10); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
        .glass-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: #e2ccff; }
        .glass-card p { color: #bfaddb; font-size: 0.95rem; }
        .stat-number { font-size: 2.5rem; font-weight: 800; background: linear-gradient(135deg, #f0e0ff, #b27eff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .img-rounded { width: 100%; border-radius: 18px; margin: 16px 0; box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
        .section { padding: 60px 0; }
        .faq-item { background: rgba(255,255,255,0.04); border-radius: 20px; padding: 20px 24px; margin-bottom: 14px; border-left: 3px solid #8f5eff; }
        .faq-item h4 { font-size: 1.1rem; color: #e2ccff; margin-bottom: 8px; }
        .faq-item p { color: #bfaddb; }
        .news-item { background: rgba(255,255,255,0.04); border-radius: 20px; padding: 22px; margin-bottom: 18px; border: 1px solid rgba(255,255,255,0.06); }
        .news-date { font-size: 0.85rem; color: #b69ae0; margin-bottom: 6px; }
        .news-item h4 { font-size: 1.2rem; color: #e8d4ff; margin-bottom: 8px; }
        .news-item p { color: #c5b2e0; }
        footer { background: rgba(10, 5, 22, 0.8); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 0 20px; margin-top: 40px; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 24px; margin-bottom: 20px; }
        .footer-links a { color: #b09ad0; text-decoration: none; font-size: 0.9rem; }
        .footer-links a:hover { color: #e4d0ff; }
        .footer-info { text-align: center; color: #8877a8; font-size: 0.85rem; line-height: 2; }
        .footer-info a { color: #b09ad0; text-decoration: none; }
        .footer-info a:hover { color: #e4d0ff; }
        .flex-2col { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; align-items: start; }
        .text-highlight { color: #dbbaff; }
        @media (max-width: 768px) { h1 { font-size: 2rem; } h2 { font-size: 1.5rem; } .nav-links { gap: 8px; } .nav-links a { font-size: 0.85rem; padding: 4px 10px; } }