        /* FAQs */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #333; /* Default text color for light backgrounds */
            -webkit-user-select: none;
            user-select: none;
            overflow-x: hidden;
        }

        /* Animated Background Elements from the previous theme */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape1 { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
        .shape2 { width: 120px; height: 120px; top: 60%; right: 10%; animation-delay: 2s; }
        .shape3 { width: 60px; height: 60px; top: 80%; left: 70%; animation-delay: 4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(20px) rotate(240deg); }
        }

        /* Side Navigation Bar Styles */
        .sidenav {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 1001;
            top: 0;
            left: 0;
            background: linear-gradient(135deg, black, #4d4949);
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 60px;
        }

        .sidenav a {
            padding: 10px 15px 10px 32px;
            text-decoration: none;
            font-size: 22px;
            color: #ccc;
            display: block;
            transition: 0.3s;
        }

        .sidenav a:hover {
            color: #ff4d00; /* Orange accent */
        }

        .sidenav .closebtn {
            position: absolute;
            top: 5px;
            right: 25px;
            font-size: 36px;
        }

        /* Main content wrapper */
        #main {
            transition: margin-left .5s;
        }

        /* Header Styles (from previous theme) */
        header {
            background: linear-gradient(135deg, black, #665f5f);
            backdrop-filter: blur(10px);
            color: #fff;
            padding: 1rem;
            width: 100%;
            box-sizing: border-box;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid rgba(255, 77, 0, 0.3); /* Orange accent */
        }

        header nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        header .logo {
            display: flex;
            align-items: center;
        }
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-image {
            width: 80px;
            height: 60px;
            object-fit: contain; /* Preserves shape */
            box-shadow:none;
            transition: transform 0.3s ease;
        }

        .logo-image:hover {
            transform: scale(1.05);
        }

      .h2 {
          font-weight: 700;
          letter-spacing: 1px;
          background: linear-gradient(90deg, #00f7ff, #00d9f5, #00b3e6);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          animation: titleGlow 3s ease-in-out infinite alternate;
      }

      @keyframes titleGlow {
          from { filter: brightness(1); }
          to { filter: brightness(1.2); }
      }

        .open-nav {
            font-size: 30px;
            cursor: pointer;
            color: white;
            transition: color 0.3s ease;
        }

        .open-nav:hover {
            color: #ff4d00; /* Orange accent */
        }

        /* FAQ Section Wrapper (styled like .services) */
        .faq-wrapper {
            text-align: center;
            padding: 80px 5%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            max-width: 1200px;
            margin: 40px auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .faq-wrapper h1 {
            font-size: 42px;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }
        
        .faq-wrapper .services-subtitle { /* Reusing class for consistency */
            font-size: 18px;
            color: #666;
            margin-bottom: 50px;
        }

        @keyframes titleGlow {
            0% { filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.3)); }
            100% { filter: drop-shadow(0 0 20px rgba(118, 75, 162, 0.6)); }
        }

        /* FAQ Item Styling (styled like .service-item) */
        .faq-item {
            background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
            margin-bottom: 20px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .faq-item:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            border: 2px solid rgba(255, 77, 0, 0.3); /* Orange accent */
        }

        .faq-content {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 30px;
        }

        .question h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        .answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 30px;
        }
        
        .faq-item.active .answer {
            max-height: 200px; /* Allow space for answer to expand */
            padding: 0 30px 30px 30px;
        }
        
        .answer p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        /* FAQ Icon Styling (styled like .service-icon) */
        .faq-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item:hover .faq-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        /* Different colors for icons, like in the previous theme */
        .icon-color-1 { background: linear-gradient(45deg, #ff6b6b, #ff8e8e); }
        .icon-color-2 { background: linear-gradient(45deg, #4ecdc4, #44a08d); }
        .icon-color-3 { background: linear-gradient(45deg, #45b7d1, #96c93d); }
        .icon-color-4 { background: linear-gradient(45deg, #f093fb, #f5576c); }
        .icon-color-5 { background: linear-gradient(45deg, #f9d423, #f8c202); }
        .icon-color-6 { background: linear-gradient(45deg, #a18cd1, #fbc2eb); }
        .icon-color-7 { background: linear-gradient(45deg, #5ee7df, #b490ca); }
        
        /* Toggle Button (Arrow) */
        .toggle-arrow {
            margin-left: auto;
            font-size: 1.5rem;
            font-weight: bold;
            color: #ccc;
            transition: transform 0.4s ease, color 0.3s ease;
        }
        
        .faq-item:hover .toggle-arrow {
            color: #ff8c00;
        }

        .faq-item.active .toggle-arrow {
            transform: rotate(90deg);
        }

        /* SMS/CTA Section (styled like .cta-section) */
        .cta-section {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #ff4d00, #ff8c00);
            margin: 60px 0 0 0; /* Adjusted margin */
            border-radius: 20px;
            color: white;
            box-shadow: 0 10px 30px rgba(255, 77, 0, 0.4);
        }

        .cta-section h2 {
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .cta-button {
            display: inline-block;
            background: white;
            color: #ff4d00;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            background: #f0f0f0;
        }
        
        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            color: white;
            text-align: center;
            padding: 2rem;
            width: 100%;
            box-sizing: border-box;
            position: relative;
        }

        footer p {
            margin: 0;
            font-size: 16px;
            opacity: 0.8;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .faq-wrapper {
                padding: 40px 15px;
            }
            .faq-wrapper h1 {
                font-size: 32px;
            }
            .faq-content {
                padding: 20px;
            }
            .answer {
                padding: 0 20px;
            }
            .faq-item.active .answer {
                padding: 0 20px 20px 20px;
            }
        }