
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            overflow-x: hidden;
        }
        dl, ul, ol {
            margin: 0px;
            padding: 0px;
        }

        /* Neon glow animations */
        @keyframes neonGlow {
            0%, 100% { text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 15px #00ffff, 0 0 20px #00ffff; }
            50% { text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff; }
        }

        @keyframes pinkGlow {
            0%, 100% { text-shadow: 0 0 5px #ff0077, 0 0 10px #ff0062, 0 0 15px #ff0077, 0 0 20px #ff00ff; }
            50% { text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(0, 255, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(8px);
            padding: 0.5rem 2rem;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 255, 255, 0.3);

        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #00ffff;
            animation: neonGlow 2s ease-in-out infinite alternate;
        }
        .logo-wrapper img{
            width: 60px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #00ffff;
            text-shadow: 0 0 10px #00ffff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(90deg, #00ffff, #ff00ff);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: float 3s ease-in-out infinite;
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: #cccccc;
            max-width: 600px;
            justify-self:center ;
        }
        .hero-content > .hero-policy-text{
            font-size: unset;
            color: #888888;;
        }
        .all-features-text{
            max-width: 700px;
            text-align: center;
            margin: auto;
        }
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
        }

        /* Brain animation */
        .brain-animation {
            position: absolute;
            top: 20%;
            right: 10%;
            width: 200px;
            height: 200px;
            border: 3px solid #00ffff;
            border-radius: 50%;
            animation: pulse 3s infinite, float 4s ease-in-out infinite;
            z-index: -1;
        }

        /* Section styling */
        .section {
            padding: 100px 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            animation: pinkGlow 3s ease-in-out infinite alternate;
        }

        /* Vision Section */
        .vision {
            background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
            border-radius: 20px;
            margin: 2rem auto;
            padding: 60px;
        }

        .vision-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .vision-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #cccccc;
        }

        .vision-graphic {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 300px;
            position: relative;
        }

        .vision-circle {
            width: 200px;
            height: 200px;
            border: 2px solid #ff00ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
        }

        .vision-circle::before {
            content: '';
            background: url(../assets/images/brain-training.png);
            background-position: center;
            background-size: auto;
            width: 6rem;
            height: 6rem;
            object-fit: cover;
            animation: float 3s ease-in-out infinite;
        }

        /* Features Section */
        .features {
            padding: 100px 2rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
            border-color: #00ffff;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #00ffff;
        }

        .feature-card p {
            color: #cccccc;
            line-height: 1.6;
        }
        .policy-section{
            padding-top:30px;
            padding-bottom:30px;
        }
        .policy-wrapper{
            /* background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%); */
            background: rgba(0, 255, 255, 0.1) ;
            border-radius: 20px;
            margin: 2rem auto;
            padding: 60px;
            /* border:1px solid #ff00ff75; */
            box-shadow: 0px 0px 15px 5px #ff00ff49;
        }
        .policy-wrapper p{
            color: #cccccc;
            line-height: 1.6;
        }
        .policy-wrapper h3, .policy-wrapper h2, .policy-wrapper h1{
            margin: 20px 0px!important;
            text-shadow: none!important;
        }
        .policy-wrapper h2{
            font-size: 2rem!important;
        }
        .policy-wrapper a{
            text-decoration: none;
            color: white;
        }
        .terms-wrapper h1{
            text-align: center;
        }
        /* Why Us Section */
        .why-us {
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
            border-radius: 20px;
            margin: 2rem auto;
            padding: 60px;

        }

        .why-us-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .why-us-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 0, 255, 0.3);
            transition: all 0.3s ease;
        }

        .why-us-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(255, 0, 255, 0.2);
        }

        .why-us-image {
            /* background-image: url(); */
            /* width: 300px; */
            margin-bottom: 1rem;
        }
        .why-us-image img{
            width: 100%;
            object-fit: cover;
            aspect-ratio: 432 / 234;
        }


        .why-us-item h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .why-us-item p {
            color: #cccccc;
            line-height: 1.6;
        }
.faq-section div{
max-width: unset;
}

/* faq section */

/* body {
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} */
.faq-section{
    /* padding:0px; */
    padding-left: 0px;
    padding-right: 0px;
}
.faq-container {
    /* max-width: 800px; */
    margin: 0px auto;
    /* background: rgba(255, 255, 255, 0.95); */
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    box-shadow: none;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 2.5rem;
}
.accordion{
    gap: 25px;
    display: flex;
    flex-direction: column;
    /* color: white; */
}
.accordion *{
    color: white;
    box-shadow: none;
    background: none;
    background-color: none;
}
.accordion-button {
    /* background: linear-gradient(135deg, #00ffff, #ff00ff) !important; */
    /* background-color: #00ffff10!important; */
    /* background-color: #ff00ff0c!important; */
    background: linear-gradient(45deg ,  #00ffff15, #ff00ff1e);
    
    backdrop-filter:blur(5px);
    color: white !important;
    border: none !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border-radius: 15px !important;
    /* box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3); */
    transition: all 0.3s ease;
    
}
.accordion-button:not(.collapsed) {
    /* background: none; */
    /* background: none; */
    /* background: linear-gradient(45deg ,  #00ffff15, #ff00ff1e); */
    background-color: #00ffff10!important;
    box-shadow: none;
    transform:none;
}


.accordion-button:focus{
    box-shadow: none;
}
.accordion-item h2{
    margin-bottom: 0px;
}
.accordion-button::after {
    background-image: none !important;
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    width: auto;
    height: auto;
    color: white;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none !important;
}

.accordion-item {
    border: none !important;
    /* margin-bottom: 20px; */
    border-radius: 15px;
    overflow: hidden;
    background: transparent;
}

.accordion-body {
    /* background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1)); */
    color: white;
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 25px;
    border-radius: 0 0 15px 15px;
    /* border-radius: 15px; */
    background-clip: padding-box;
    background-color: #ff00ff0c;
    /* background-color: #00ffff15; */
    border:1px solid #ff00ff3a;
    /* border:1px solid #00ffff46; */
    border-top: none;
}

.accordion-collapse {
    /* margin-top: 20px; */
    /* border-radius: 15px;
    background: #00ffff15; */
    box-shadow: none!important;
    background-color: unset!important;
    width: 98%;
    margin: auto;
    /* border-radius: 15px!important; */
}

.highlight {
    /* color: #ff00ff; */
    color: #00ffff;
    font-weight: 600;
}

.email-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
}

.email-link:hover {
    color: #ff00ff;
    text-decoration: underline;
}






        
        /* Footer */
        footer {
            background: rgba(10, 10, 10, 0.9);
            padding: 3rem 2rem 1rem;
            border-top: 1px solid rgba(0, 255, 255, 0.3);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: #00ffff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p, .footer-section a {
            color: #cccccc;
            text-decoration: none;
            line-height: 1.6;
            /* text-align: right; */
        }

        .footer-section a:hover {
            color: #00ffff;
            text-shadow: 0 0 5px #00ffff;
        }
        .footer-info{
            text-align: right;
        }
        #contact{
            padding-bottom:50px;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888888;
        }
        .mobile-menu a{
            text-decoration: none;
            color: #cccccc;
            width: 100%;
            height: 50px;
            text-align: center;
            padding: 10px;
        }
        .mobile-menu{
            display: none;
        }
        .fa-bars{
            display: none;
        }
        .display-menu{
            max-height: unset!important;
        }
        /* Responsive */
        @media (max-width: 768px) {
            header{
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
            }
            .hero-content h1 { font-size: 2.5rem; }
            .hero-content p { font-size: 1.2rem; }
            .section h2 { font-size: 2rem; }
            .vision-content { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            .brain-animation { display: none; }
            .why-us-grid{ grid-template-columns: 1fr;}
            .footer-content, .footer-info{text-align: center;}
            section{padding: 100px 1rem!important}
            .faq-section{padding-top:0.5rem!important}
            nav{margin: 0;}
            .policy-wrapper{padding:20px}
            .policy-section{padding-top:20px!important;padding-bottom:20px!important;}
            .policy-wrapper h2 {font-size: 1.5rem!important;}
            /* mobile menu */
            .mobile-menu{
                display: block;
                width: 100%;
                max-height: 0;
                /* background-color: #071027; */
                transition: all 0.5s ease;
                overflow: hidden;
                border-bottom-left-radius: 5px;
                border-bottom-right-radius: 5px;
                /* position: absolute;
                top: 75px;
                left: 0; */
            }
            .mm-list{
                flex-direction: column;
                list-style: none;
                margin: 0;
                padding: 16px 16px 40px 16px;
            }
            .d-flex{
                display: flex !important;
            }
            .mm-item{
                color: white;
                display: flex;
                justify-content: center;
                align-items: center;
                border-bottom: 1px solid #80808029;
                font-size: 20px;
                cursor: pointer;
            }
            .fa-bars{
                display: inline-block;
                /* text-align: right; */
                font-size: 30px;
            }
            .bars-wrapper{
                cursor: pointer;
            }
        }

        /* Particles effect */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #00ffff;
            border-radius: 50%;
            animation: particleFloat 6s linear infinite;
        }

        @keyframes particleFloat {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
        }