body {
            font-family: 'Poppins', sans-serif;
        }
        .font-display {
            font-family: 'Playfair Display', serif;
        }

        /* Header styles from main page */
        header {
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

        /* Removed header hover effect */

        .logo-container {
            position: relative;
        }

        .logo-container::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #60a5fa, #06b6d4);
            transition: width 0.3s ease;
        }

        .logo-container:hover::after {
            width: 100%;
        }

        nav a {
            position: relative;
            overflow: hidden;
        }

        nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
            transition: left 0.5s ease;
        }

        nav a:hover::before {
            left: 100%;
        }

        .cta-button {
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 7px 20px rgba(59, 130, 246, 0.4);
        }
        .cta-button:active {
            transform: translateY(-1px) scale(1.02);
        }

        /* Mobile Menu Button Enhanced Styles */
        .mobile-menu-button {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .mobile-menu-button:hover {
            transform: scale(1.1);
            color: #60a5fa !important;
        }
        
        .mobile-menu-button:active {
            transform: scale(0.95);
        }
        
        /* Hamburger Icon Animation */
        .hamburger-icon {
            transition: all 0.3s ease;
        }
        
        .mobile-menu-button.active .hamburger-icon {
            transform: rotate(90deg);
        }
        
        /* Mobile Menu Slide Animation */
        .mobile-menu {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(-100%);
            opacity: 0;
        }
        
        .mobile-menu.show {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* Menu Item Hover Effects */
        .mobile-menu a {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .mobile-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .mobile-menu a:hover::before {
            left: 100%;
        }
        
        .mobile-menu a:hover {
            background: rgba(96, 165, 250, 0.1) !important;
            color: #60a5fa !important;
            transform: translateX(10px);
        }

        /* Scroll Progress Bar Style */
        .scroll-progress-container {
            width: 100%;
            height: 4px;
            background-color: #e5e7eb;
            position: absolute;
            bottom: 0;
            left: 0;
        }
        .scroll-progress-bar {
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
            width: 0%;
        }

        /* Gradient text style */
        .text-gradient {
            background: linear-gradient(45deg, #60a5fa, #3b82f6, #2563eb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* CSS STYLESHEETS AND ANIMATIONS */

        /* --- 1. Root Variables (Blue Theme) --- */
        :root {
            --bg-dark-blue: #0d1b2a;
            --bg-light-blue: #1b263b;
            --primary-blue: #415a77;
            --accent-cyan: #00a6fb;
            --text-light: #e0e1dd;
            --text-dark: #0d1b2a;
            --success-green: #2ecc71;
            --star-yellow: #ffc107;
            --border-color: #415a77;
        }

        /* --- 2. General Styles & Reset --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-dark-blue);
            color: var(--text-light);
            min-height: 100vh;
        }

        /* --- 3. Keyframe Animations --- */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
            background-color: var(--bg-light-blue);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
                0 0 50px rgba(0, 166, 251, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            animation: containerEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 166, 251, 0.2);
        }

        @keyframes containerEntrance {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            50% {
                opacity: 0.8;
                transform: translateY(-10px) scale(1.02);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
                    0 0 50px rgba(0, 166, 251, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }
        }
        
        /* --- HEADER STYLES --- */
        .faq-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding-top: 2rem;
        }
        
        .faq-header::before {
            content: '✨ PREMIUM EXPERIENCE';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--accent-cyan), var(--primary-blue));
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            animation: badgeFloat 3s ease-in-out infinite;
            box-shadow: 0 4px 15px rgba(0, 166, 251, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 2;
        }

        @keyframes badgeFloat {
            0%, 100% {
                transform: translateX(-50%) translateY(0px);
                box-shadow: 0 4px 15px rgba(0, 166, 251, 0.3);
            }
            50% {
                transform: translateX(-50%) translateY(-5px);
                box-shadow: 0 8px 25px rgba(0, 166, 251, 0.4);
            }
        }

        .faq-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            position: relative;
            background: linear-gradient(135deg,
                    var(--text-light) 0%,
                    var(--accent-cyan) 25%,
                    #ffffff 50%,
                    var(--accent-cyan) 75%,
                    var(--text-light) 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
            filter: drop-shadow(0 0 10px rgba(0, 166, 251, 0.3));
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
                filter: drop-shadow(0 0 10px rgba(0, 166, 251, 0.3));
            }
            50% {
                background-position: 100% 50%;
                filter: drop-shadow(0 0 20px rgba(0, 166, 251, 0.5));
            }
        }

        .faq-header h1 i {
            color: var(--accent-cyan);
            animation: iconPulse 2s ease-in-out infinite;
            filter: drop-shadow(0 0 10px rgba(0, 166, 251, 0.5));
        }

        @keyframes iconPulse {
            0%, 100% {
                transform: scale(1);
                color: var(--accent-cyan);
            }
            50% {
                transform: scale(1.1);
                color: #ffffff;
            }
        }

        .faq-header p {
            font-size: 1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0.5rem auto 0;
            opacity: 0.9;
            animation: textFadeIn 1s ease-out 0.5s both;
            line-height: 1.6;
            position: relative;
        }

        @keyframes textFadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 0.9; transform: translateY(0); }
        }

        /* --- FAQ ACCORDION STYLES --- */
        .faq-list {
            list-style: none;
            margin-bottom: 3rem;
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            background: rgba(13, 27, 42, 0.5);
            backdrop-filter: blur(10px);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation: faqItemFadeIn 0.6s ease-out both;
        }

        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }
        .faq-item:nth-child(5) { animation-delay: 0.5s; }
        .faq-item:nth-child(6) { animation-delay: 0.6s; }
        .faq-item:nth-child(7) { animation-delay: 0.7s; }
        .faq-item:nth-child(8) { animation-delay: 0.8s; }
        .faq-item:nth-child(9) { animation-delay: 0.9s; }
        .faq-item:nth-child(10) { animation-delay: 1.0s; }

        @keyframes faqItemFadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .faq-item:hover {
            border-color: var(--accent-cyan);
            box-shadow: 0 8px 25px rgba(0, 166, 251, 0.2);
            transform: translateY(-2px);
        }

        .faq-item.active {
            border-color: var(--accent-cyan);
            box-shadow: 0 8px 25px rgba(0, 166, 251, 0.3);
            background: rgba(0, 166, 251, 0.05);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-light);
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent-cyan);
        }

        .faq-question .icon {
            font-size: 1.2rem;
            color: var(--accent-cyan);
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .faq-item.active .faq-question .icon {
            transform: rotate(180deg);
            color: #ffffff;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: rgba(0, 166, 251, 0.02);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-answer p {
            color: var(--text-light);
            opacity: 0.9;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* --- CONTACT SECTION --- */
        .contact-section {
            background: linear-gradient(135deg, rgba(65, 90, 119, 0.2) 0%, rgba(27, 38, 59, 0.3) 50%, rgba(0, 166, 251, 0.1) 100%);
            border: 1px solid var(--primary-blue);
            border-radius: 1.5rem;
            padding: 2rem;
            margin-top: 2rem;
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .contact-section h3 {
            color: var(--text-light);
            font-size: 1.375rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-light), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-section p {
            color: var(--text-light);
            margin-bottom: 2rem;
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .contact-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .contact-btn {
            padding: 1rem;
            border-radius: 1rem;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
            border: 2px solid transparent;
        }

        .contact-btn i {
            font-size: 1.375rem;
            transition: transform 0.3s ease;
        }

        .contact-btn:hover i {
            transform: scale(1.2) rotate(5deg);
        }

        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .whatsapp-btn:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4), 0 0 20px rgba(37, 211, 102, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
            border-color: rgba(37, 211, 102, 0.5);
        }

        .email-btn {
            background: linear-gradient(135deg, rgba(0, 166, 251, 0.2) 0%, rgba(65, 90, 119, 0.3) 100%);
            color: var(--text-light);
            border: 2px solid var(--accent-cyan);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 166, 251, 0.2), inset 0 1px 0 rgba(224, 225, 221, 0.1);
        }

        .email-btn:hover {
            transform: translateY(-8px) scale(1.05);
            background: linear-gradient(135deg, rgba(0, 166, 251, 0.3) 0%, rgba(65, 90, 119, 0.4) 100%);
            border-color: var(--accent-cyan);
            box-shadow: 0 20px 40px rgba(0, 166, 251, 0.3), 0 0 20px rgba(0, 166, 251, 0.2), inset 0 1px 0 rgba(224, 225, 221, 0.2);
            color: white;
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 768px) {
            .faq-container {
                padding: 2rem 1.5rem;
            }
            .faq-header h1 {
                font-size: 2rem;
                flex-direction: column;
                gap: 0.5rem;
            }
            .faq-header::before {
                font-size: 0.7rem;
                padding: 0.4rem 1rem;
            }
            .contact-buttons {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .faq-header h1 {
                font-size: 1.8rem;
            }
            .faq-question {
                padding: 1.25rem;
                font-size: 1rem;
            }
        }