* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', system-ui, -apple-system, sans-serif; }
        body { background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%); color: #f0e6ff; min-height: 100vh; }
        .container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
        /* Navigation */
        nav { background: rgba(26, 10, 46, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(217, 70, 239, 0.2); position: sticky; top: 0; z-index: 1000; }
        nav .container { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
        .nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
        .nav-links a { color: #d8b4fe; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s; letter-spacing: 0.3px; }
        .nav-links a:hover { color: #d946ef; text-shadow: 0 0 12px rgba(217, 70, 239, 0.5); }
        .nav-extra { display: flex; gap: 16px; }
        .nav-extra a { color: #a78bfa; font-size: 0.85rem; text-decoration: none; }
        /* Cards */
        .card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(217, 70, 239, 0.25); border-radius: 20px; padding: 28px; backdrop-filter: blur(6px); box-shadow: 0 0 30px rgba(217, 70, 239, 0.08); transition: transform 0.3s, box-shadow 0.3s; }
        .card:hover { transform: translateY(-4px); box-shadow: 0 0 45px rgba(217, 70, 239, 0.2); border-color: #d946ef; }
        .glow-border { position: relative; overflow: hidden; }
        .glow-border::after { content: ''; position: absolute; inset: -2px; border-radius: 22px; background: linear-gradient(45deg, transparent, #d946ef, transparent); z-index: -1; opacity: 0.3; }
        /* Typography */
        h1 { font-size: 3rem; font-weight: 700; background: linear-gradient(135deg, #e9d5ff, #d946ef); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-align: center; margin: 40px 0 20px; line-height: 1.2; }
        h2 { font-size: 2rem; color: #d8b4fe; margin-bottom: 24px; border-left: 4px solid #d946ef; padding-left: 16px; }
        h3 { color: #c4b5fd; font-size: 1.3rem; margin-bottom: 12px; }
        p { line-height: 1.8; color: #d4c4ed; font-size: 1rem; }
        .text-gradient { background: linear-gradient(135deg, #e9d5ff, #d946ef); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        /* Grid */
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        /* Hero */
        .hero { padding: 80px 0 60px; text-align: center; background: radial-gradient(circle at 50% 20%, rgba(217, 70, 239, 0.08), transparent 70%); }
        .hero h1 { margin-bottom: 12px; }
        .hero p { max-width: 800px; margin: 0 auto 30px; font-size: 1.1rem; }
        .hero img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 24px; box-shadow: 0 0 50px rgba(217, 70, 239, 0.15); margin-top: 30px; }
        /* Stats */
        .stat-item { text-align: center; padding: 20px; }
        .stat-number { font-size: 2.8rem; font-weight: 700; color: #d946ef; }
        .stat-label { color: #a78bfa; font-size: 0.95rem; margin-top: 6px; }
        /* Features / Advantages */
        .feature-icon { font-size: 2.5rem; margin-bottom: 12px; }
        /* Testimonials */
        .testimonial-card { text-align: center; }
        .testimonial-card p { font-style: italic; }
        .testimonial-author { margin-top: 16px; font-weight: 600; color: #d8b4fe; }
        /* News */
        .news-item { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(217, 70, 239, 0.15); }
        .news-item h3 { font-size: 1.2rem; }
        .news-item .date { font-size: 0.85rem; color: #a78bfa; margin-bottom: 6px; display: block; }
        .news-item p { font-size: 0.95rem; }
        /* FAQ */
        .faq-item { margin-bottom: 20px; }
        .faq-question { font-weight: 600; color: #d946ef; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(217, 70, 239, 0.1); }
        .faq-answer { padding: 12px 0 4px; color: #d4c4ed; line-height: 1.7; }
        /* CTA */
        .cta-section { background: linear-gradient(135deg, rgba(217, 70, 239, 0.12), rgba(26, 10, 46, 0.8)); border-radius: 32px; padding: 48px; text-align: center; margin: 40px 0; border: 1px solid rgba(217, 70, 239, 0.2); }
        .cta-button { display: inline-block; padding: 14px 42px; background: linear-gradient(135deg, #d946ef, #a21caf); border: none; border-radius: 50px; color: #fff; font-weight: 600; font-size: 1.1rem; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; margin-top: 20px; box-shadow: 0 0 30px rgba(217, 70, 239, 0.3); }
        .cta-button:hover { transform: scale(1.05); box-shadow: 0 0 50px rgba(217, 70, 239, 0.5); }
        /* Footer */
        footer { background: rgba(0, 0, 0, 0.4); border-top: 1px solid rgba(217, 70, 239, 0.15); padding: 40px 0 20px; margin-top: 60px; }
        footer .container { text-align: center; }
        footer p, footer a { color: #9d8abf; font-size: 0.9rem; }
        footer a { margin: 0 6px; transition: color 0.3s; }
        footer a:hover { color: #d946ef; }
        .footer-links { margin: 16px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            nav .container { flex-direction: column; gap: 12px; }
            .nav-links { justify-content: center; gap: 16px; }
            .hero { padding: 40px 0; }
        }
        /* Partner logos placeholder */
        .partner-item { display: flex; justify-content: center; align-items: center; padding: 20px; background: rgba(255,255,255,0.03); border-radius: 16px; }
        /* Image styles */
        img { width: 100%; height: auto; border-radius: 16px; }
        .section { margin: 48px 0; }
        /* small adjustment */
        .geo-text { font-size: 1.05rem; line-height: 1.9; }
        .brand-story-text { font-size: 1.05rem; }
        .news-readmore { color: #d946ef; text-decoration: none; font-weight: 500; }