
        * {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        ul {
            list-style: none;
        }
        
        a {
            text-decoration: none;
        }
        
        body {
            background: #F5F5FF;
            min-height: 100vh;
            padding-bottom: 80px;
        }
        
        /* Header Styles */
        .header {
            background: #fff;
            padding: 15px 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .back-btn-header, .menu-btn {
            background: none;
            border: none;
            color: #3B2A82;
            font-size: 20px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }
        
        .back-btn-header:hover, .menu-btn:hover {
            background: #f0f0f0;
        }
        
        .header-title {
            font-size: 20px;
            font-weight: 600;
            color: #3B2A82;
            margin: 0;
        }
        
        /* FAQ Section */
        #faq {
            background: #F5F5FF;
            padding: 100px 20px 40px;
            min-height: 100vh;
        }
        
        .faq-heading {
            text-align: center;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .faq-heading h3 {
            font-weight: 700;
            font-size: 2.5rem;
            color: #3B2A82;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .faq-heading p {
            font-weight: 400;
            font-size: 1rem;
            line-height: 1.6;
            color: #7A719B;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .faq-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: flex-start;
        }
        
        .faq-box {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid #FFFFFF;
            box-shadow: 0 8px 30px rgba(59, 42, 130, 0.1);
            border-radius: 20px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .faq-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(59, 42, 130, 0.15);
        }
        
        .faq-box-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            cursor: pointer;
            user-select: none;
            transition: background 0.3s ease;
        }
        
        .faq-box-question:hover {
            background: rgba(255, 255, 255, 0.5);
        }
        
        .faq-box-question h4 {
            font-weight: 600;
            font-size: 1.1rem;
            color: #3B2A82;
            margin: 0;
            flex: 1;
            padding-right: 20px;
        }
        
        .faq-box-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.3);
        }
        
        .faq-box-answer p {
            font-weight: 400;
            font-size: 0.9rem;
            line-height: 1.6;
            color: #7A719B;
            padding: 0 30px 25px;
            margin: 0;
        }
        
        .faq-img {
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(59, 42, 130, 0.1);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        
        .faq-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            object-position: center;
        }
        
        .faq-box-icon {
            display: block;
            position: relative;
            height: 2px;
            width: 20px;
            background: #3B2A82;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .faq-box-icon::before,
        .faq-box-icon::after {
            background: #3B2A82;
            content: '';
            position: absolute;
            height: 100%;
            width: 100%;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .faq-box-icon::before {
            top: 0;
        }
        
        .faq-box-icon::after {
            transform: rotate(90deg);
            top: 0;
        }
        
        .faq-box-question.active h4 {
            color: #FF3067;
        }
        
        .faq-box-question.active .faq-box-icon::after {
            transform: rotate(0deg);
        }
        
        .faq-box-question.active .faq-box-icon,
        .faq-box-question.active .faq-box-icon::before,
        .faq-box-question.active .faq-box-icon::after {
            background: #FF3067;
        }
        
        /* Bottom Navigation */
        .bottom-nav {
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 15px 0;
            position: fixed;
            bottom: 0;
            width: 90%;
            margin: 0 auto;
            left: 0;
            right: 0;
            border-radius: 50px;
            background-color: white;
            border-top: 1px solid #e6e6e6;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
        
        .nav-icon {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-gray);
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 500;
        }

        .nav-icon.active {
            color: var(--primary-purple);
            background-color: rgba(99, 102, 241, 0.1);
        }

        .nav-icon img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .nav-text {
            opacity: 0;
            max-width: 0;
            overflow: hidden;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .nav-icon.active .nav-text {
            opacity: 1;
            max-width: 100px;
        }

        /* Media Query for smaller phones */
        @media (max-width: 767px) {
            .nav-icon {
                padding: 6px 8px;
                font-size: 13px;
            }
            
        .promo-image img{
            height: 230px !important;
        }
            .nav-icon img {
                width: 20px;
                height: 20px;
            }
        }
        /* Responsive Design */
        @media (max-width: 992px) {
            .faq-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .faq-img {
                position: static;
                margin-top: 20px;
            }
            
            .faq-heading h3 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            #faq {
                padding: 80px 15px 40px;
            }
            
            .faq-heading h3 {
                font-size: 1.8rem;
            }
            
            .faq-heading p {
                font-size: 0.9rem;
            }
            
            .faq-box-question {
                padding: 20px 25px;
            }
            
            .faq-box-question h4 {
                font-size: 1rem;
            }
            
            .faq-box-answer p {
                padding: 0 25px 20px;
                font-size: 0.85rem;
            }
            
            .faq-img img {
                height: 300px;
            }
        }
        
        @media (max-width: 576px) {
            .faq-heading h3 {
                font-size: 1.5rem;
            }
            
            .faq-box-question {
                padding: 18px 20px;
            }
            
            .faq-box-question h4 {
                font-size: 0.95rem;
            }
            
            .faq-box-answer p {
                padding: 0 20px 18px;
                font-size: 0.8rem;
            }
            
            .faq-img img {
                height: 250px;
            }
            
            .nav-icon {
                font-size: 0.7rem;
            }
            
            .nav-icon img {
                width: 20px;
                height: 20px;
            }
        }