 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(255,165,0,0.2)), 
                        url('https://i.postimg.cc/Z5Hjz8cz/20250424-235758.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #ff6600, #ff9900);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.5s ease-out;
        }

        .loading-overlay.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255,255,255,0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Header */
        .top-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 1);
            padding: 10px 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(-100%);
            animation: slideDown 0.8s ease-out 0.5s forwards;
        }

        @keyframes slideDown {
            to { transform: translateY(0); }
        }

        .logo img {
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.1) rotate(5deg);
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: none;
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }

        .desktop-nav ul li a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            background: transparent;
        }

        .desktop-nav ul li a:hover {
            color: white;
            background: linear-gradient(90deg, #ff6600, #ff9900);
            transform: translateY(-2px);
        }

        /* Hamburger Menu */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .hamburger-menu:hover {
            transform: scale(1.1);
        }

        .hamburger-menu .bar {
            width: 25px;
            height: 3px;
            background: #333;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger-menu.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger-menu.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        @media (min-width: 769px) {
            .desktop-nav {
                display: block;
            }
            
            .hamburger-menu {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .hamburger-menu {
                display: flex !important;
            }
        }

        /* Side Menu */
        .menu {
            position: fixed;
            top: 60px;
            left: 0;
            background: linear-gradient(135deg, #333, #555);
            width: 220px;
            height: calc(100% - 60px);
            transform: translateX(-100%);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 999;
            overflow: hidden;
        }

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

        .menu.open {
            transform: translateX(0);
            box-shadow: 5px 0 20px rgba(0,0,0,0.3);
        }

        .menu.open::before {
            left: 100%;
        }

        .menu ul {
            list-style: none;
            padding: 20px 0;
        }

        .menu ul li {
            margin: 5px 0;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .menu.open ul li {
            transform: translateX(0);
            opacity: 1;
        }

        .menu ul li:nth-child(1) { transition-delay: 0.1s; }
        .menu ul li:nth-child(2) { transition-delay: 0.2s; }
        .menu ul li:nth-child(3) { transition-delay: 0.3s; }
        .menu ul li:nth-child(4) { transition-delay: 0.4s; }
        .menu ul li:nth-child(5) { transition-delay: 0.5s; }
        .menu ul li:nth-child(6) { transition-delay: 0.6s; }

        .menu ul li a {
            font-size: 16px;
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            display: block;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .menu ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #ff6600, #ff9900);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .menu ul li a:hover::before {
            left: 0;
        }

        .menu ul li a:hover {
            color: white;
            transform: translateX(10px);
        }

        /* FAQ Container */
        .faq-container {
            margin: 120px auto 80px;
            width: 90%;
            max-width: 800px;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 0.8s ease-out 0.7s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,165,0,0.1), transparent);
            animation: shimmer 3s infinite 1.5s;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .faq-container h1 {
            text-align: center;
            margin-bottom: 50px;
            color: #ff6600;
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
            animation: glow 2s ease-in-out infinite alternate 2s;
        }

        @keyframes glow {
            from { text-shadow: 0 0 10px #ff6600; }
            to { text-shadow: 0 0 20px #ff6600, 0 0 30px #ff6600; }
        }

        .faq-container h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6600, #ff9900);
            border-radius: 2px;
        }

        /* FAQ Items */
        .faq-item {
            border-bottom: 2px solid rgba(255,102,0,0.1);
            margin-bottom: 10px;
            border-radius: 15px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .faq-item:nth-child(2) { animation-delay: 1s; }
        .faq-item:nth-child(3) { animation-delay: 1.1s; }
        .faq-item:nth-child(4) { animation-delay: 1.2s; }
        .faq-item:nth-child(5) { animation-delay: 1.3s; }
        .faq-item:nth-child(6) { animation-delay: 1.4s; }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255,102,0,0.15);
        }

        .faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #ff6600, #ff9900);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .faq-item.open::before {
            transform: scaleX(1);
        }

        .question {
            width: 100%;
            background: transparent;
            border: none;
            padding: 25px 30px;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            color: #333;
            transition: all 0.3s ease;
            position: relative;
        }

        .question:hover {
            background: rgba(255,102,0,0.05);
            color: #ff6600;
        }

        .question .arrow {
            font-size: 1.2rem;
            color: #ff6600;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .faq-item.open .arrow {
            transform: rotate(90deg) scale(1.2);
            color: #ff9900;
        }

        .answer {
            max-height: 0;
            overflow: hidden;
            background: rgba(255,102,0,0.02);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 0 30px;
        }

        .answer p {
            padding: 25px 0;
            line-height: 1.7;
            color: #555;
            font-size: 1rem;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease 0.1s;
        }

        .faq-item.open .answer {
            max-height: 300px;
            border-top: 1px solid rgba(255,102,0,0.2);
        }

        .faq-item.open .answer p {
            opacity: 1;
            transform: translateY(0);
        }

        /* Help Section */
        .help-section {
            margin-top: 60px;
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid rgba(255,102,0,0.2);
            position: relative;
            z-index: 1;
        }

        .help-section h3 {
            font-size: 1.5rem;
            color: #ff6600;
            margin-bottom: 15px;
        }

        .help-section p {
            color: #666;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .help-btn {
            background: linear-gradient(45deg, #ff6600, #ff9900);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 25px;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(255,102,0,0.3);
            position: relative;
            overflow: hidden;
        }

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

        .help-btn:hover::before {
            left: 100%;
        }

        .help-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255,102,0,0.4);
        }

        /* Scroll to Top Button */
        .scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(45deg, #ff6600, #ff9900);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            width: 60px;
            height: 60px;
            cursor: pointer;
            display: none;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 20px rgba(255,102,0,0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-top-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(255,102,0,0.6);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .faq-container {
                margin: 100px 15px 60px;
                padding: 40px 25px;
            }

            .faq-container h1 {
                font-size: 2rem;
            }

            .question {
                padding: 20px;
                font-size: 1rem;
            }

            .answer p {
                padding: 20px 0;
                font-size: 0.95rem;
            }

            .hamburger-menu {
                display: flex;
            }

            .desktop-nav {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .faq-container {
                padding: 30px 20px;
            }

            .faq-container h1 {
                font-size: 1.8rem;
            }

            .question {
                padding: 18px;
                font-size: 0.95rem;
            }
        }