<style>
        :root {
            --primary: #9333ea;
            --secondary: #06b6d4;
            --dark: #0f0817;
            --dark-light: #1a0f2e;
            --gray: #9ca3af;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
            color: var(--white);
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Language Selector Styles */
        .language-selector {
            position: relative;
            margin-left: 1rem;
        }

        .language-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(147, 51, 234, 0.3);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            transition: all 0.3s;
            min-width: 100px;
        }

        .language-btn:hover {
            background: rgba(147, 51, 234, 0.2);
            border-color: var(--primary);
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 0.5rem;
            background: rgba(15, 8, 23, 0.98);
            border: 1px solid rgba(147, 51, 234, 0.3);
            border-radius: 15px;
            overflow: hidden;
            display: none;
            min-width: 200px;
            max-height: 400px;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .language-dropdown.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .language-option {
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
            transition: background 0.2s;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .language-option:last-child {
            border-bottom: none;
        }

        .language-option:hover {
            background: rgba(147, 51, 234, 0.2);
        }

        .language-option.active {
            background: rgba(147, 51, 234, 0.3);
        }

        .language-name {
            flex: 1;
            font-size: 0.9rem;
        }

        .language-native {
            color: var(--gray);
            font-size: 0.8rem;
        }
        
        /* Header Styles */
        header {
            background: rgba(15, 8, 23, 0.95);
            padding: 1rem 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .logo svg {
            width: 40px;
            height: 40px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #06b6d4;
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        /* Main Content */
        main {
            flex: 1;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        h1 {
            font-size: 3rem;
            margin: 3rem 0 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .faq-section {
            margin-bottom: 3rem;
        }
        
        .faq-section h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        
        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(147, 51, 234, 0.2);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .faq-item:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }
        
        .faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        
        .faq-answer {
            color: var(--gray);
            line-height: 1.8;
        }
        
        /* Footer Styles 
        footer {
            background: rgba(15, 8, 23, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem 2rem 1rem;
            margin-top: auto;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3,
        .footer-section h4 {
            margin-bottom: 1rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #06b6d4;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #9ca3af;
        } */
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .language-btn {
                padding: 0.5rem 0.75rem;
                min-width: auto;
            }

            .language-btn span:not(.flag-container) {
                display: none;
            }
        }
    </style>
	
	<style>
    @media screen and (max-width: 768px) {
        .mobile-menu-btn {
            display: block !important;
            position: relative !important;
            z-index: 1003 !important;
        }
        
        .nav-links {
            position: fixed !important;
            top: 0 !important;
            right: -100% !important;
            width: 80% !important;
            max-width: 400px !important;
            height: 100vh !important;
            background: rgba(15, 8, 23, 0.98) !important;
            backdrop-filter: blur(20px) !important;
            -webkit-backdrop-filter: blur(20px) !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            padding: 5rem 2rem !important;
            transition: right 0.3s ease-in-out !important;
            z-index: 1002 !important;
            overflow-y: auto !important;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5) !important;
        }
        
        .nav-links.mobile-active {
            right: 0 !important;
        }
        
        .nav-links a {
            width: 100% !important;
            padding: 1rem 0 !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
            font-size: 1.1rem !important;
            color: #9ca3af !important;
            text-decoration: none !important;
            display: block !important;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: #ffffff !important;
        }
        
        .language-selector {
            width: 100% !important;
            margin: 1rem 0 !important;
            order: 10 !important;
        }
        
        .language-btn {
            width: 100% !important;
            justify-content: center !important;
            display: flex !important;
        }
        
        .cart-btn {
            width: 100% !important;
            justify-content: center !important;
            margin: 1rem 0 !important;
            order: 9 !important;
            display: flex !important;
        }
    }
</style>