@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@400;600&display=swap');
        
        :root {
            --primary-color: #5d26a2;
            --secondary-color: #f755a9;
            --accent-color: #4dfa98;
            --background-dark: #1a0f35;
            --background-light: #2c1a4e;
            --text-light: #e4e4e4;
            --text-dark: #1a0f35;
            --border-glow: #8a3ffc;
            --transition-speed: 0.5s ease-in-out;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--background-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        a:hover {
            color: var(--accent-color);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--background-dark);
            padding: 1rem 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px var(--accent-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.1rem;
            color: var(--text-light);
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            margin: 5px;
            transition: all 0.3s ease;
        }

        main {
            padding-top: 80px; /* Adjust based on header height */
        }

        section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: var(--secondary-color);
            text-shadow: 0 0 10px var(--secondary-color);
            text-transform: uppercase;
        }

        .text-center {
            text-align: center;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--secondary-color);
            color: var(--background-dark);
            text-transform: uppercase;
            font-family: 'Orbitron', sans-serif;
            font-weight: bold;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(247, 85, 169, 0.5);
        }

        .btn:hover {
            background: var(--accent-color);
            color: var(--background-dark);
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(77, 250, 152, 0.8);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: url('../img/08.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 15, 53, 0.7);
        }

        .hero-content {
            z-index: 1;
            animation: fadeIn 2s ease-in-out;
        }

        .hero-content h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--secondary-color);
        }

        .hero-content p {
            font-size: 1.5rem;
            max-width: 600px;
            margin: 20px auto 40px;
            text-shadow: 0 0 10px rgba(0,0,0,0.8);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* About Section */
        .about .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .about .text-content {
            flex: 1;
            min-width: 300px;
        }

        .about .image-container {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .about .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            border: 2px solid var(--border-glow);
            box-shadow: 0 0 20px var(--border-glow);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .about .image-container img.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Products Section */
        .products .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .products .product-card {
            background: var(--background-light);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
            transition: transform 0.3s ease-in-out;
            opacity: 0;
            transform: scale(0.9);
            border: 1px solid var(--primary-color);
        }

        .products .product-card.visible {
            opacity: 1;
            transform: scale(1);
        }

        .products .product-card h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .products .product-card img {
            max-width: 100%;
            height: 200px;
            object-fit: contain;
            margin-bottom: 20px;
        }
        
        .products .product-card p {
            font-size: 1rem;
        }

        /* Prices Section */
        .prices .price-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .prices .price-card {
            background: var(--background-light);
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            min-width: 300px;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
            transition: transform 0.3s ease-in-out;
            border: 1px solid var(--secondary-color);
            opacity: 0;
            transform: translateY(20px);
        }

        .prices .price-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .prices .price-card h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .prices .price-card .price {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .prices .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .prices .price-card li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .prices .price-card li::before {
            content: '✓';
            color: var(--accent-color);
            position: absolute;
            left: 0;
        }

        /* Gallery Section */
        .gallery .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            border: 2px solid var(--primary-color);
            box-shadow: 0 0 10px rgba(0,0,0,0.5);
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .gallery .gallery-item.visible {
            opacity: 1;
            transform: scale(1);
        }

        .gallery .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Feedback Section */
        .feedback .slider-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .feedback .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback .slide {
            min-width: 100%;
            text-align: center;
            background: var(--background-light);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid var(--primary-color);
            box-shadow: 0 0 15px rgba(0,0,0,0.5);
            opacity: 0;
            transform: translateX(100%);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .feedback .slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .feedback .slider-dots {
            text-align: center;
            margin-top: 20px;
        }

        .feedback .slider-dot {
            height: 10px;
            width: 10px;
            background-color: #555;
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .feedback .slider-dot.active {
            background-color: var(--secondary-color);
        }
        
        .feedback .author {
            margin-top: 20px;
            font-style: italic;
            color: var(--accent-color);
        }

        /* FAQ Section */
        .faq .faq-item {
            margin-bottom: 20px;
            background: var(--background-light);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid var(--primary-color);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .faq .faq-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq .question {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            cursor: pointer;
            color: var(--secondary-color);
            position: relative;
        }

        .faq .question::after {
            content: '+';
            position: absolute;
            right: 0;
            transition: transform 0.3s;
        }

        .faq .question.active::after {
            content: '-';
        }

        .faq .answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out;
            padding-top: 0;
        }

        .faq .answer.active {
            max-height: 200px; /* Adjust based on content height */
            padding-top: 15px;
        }
        
        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--background-light);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid var(--secondary-color);
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .contact-form.visible {
            opacity: 1;
            transform: scale(1);
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid var(--primary-color);
            background: #2c1a4e;
            color: var(--text-light);
            border-radius: 8px;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 8px rgba(77, 250, 152, 0.5);
        }

        /* Footer */
        footer {
            background: var(--background-light);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            text-align: left;
            gap: 20px;
        }
        
        .footer-links, .footer-contact, .footer-disclaimer {
            flex-basis: 30%;
            min-width: 250px;
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 1rem;
            color: var(--text-light);
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .footer-contact p {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #888;
        }

        .disclaimer {
            padding: 20px 0;
            font-size: 0.9rem;
            color: #ccc;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: var(--background-light);
            border: 1px solid var(--secondary-color);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            z-index: 2000;
        }

        .cookie-banner p {
            margin: 0;
            flex-grow: 1;
        }

        .cookie-banner a {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .cookie-banner button {
            background: var(--secondary-color);
            color: var(--background-dark);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Orbitron', sans-serif;
            font-weight: bold;
        }

        /* Modal / Popup */
        .modal {
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            display: none; /* Hidden by default */
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: var(--background-dark);
            padding: 30px;
            border-radius: 15px;
            max-width: 400px;
            text-align: center;
            border: 2px solid var(--accent-color);
            position: relative;
            animation: modalOpen 0.5s ease-in-out;
        }

        .modal-content h3 {
            color: var(--accent-color);
            margin-bottom: 15px;
            font-family: 'Orbitron', sans-serif;
        }

        @keyframes modalOpen {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        .close-button {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 2rem;
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-button:hover {
            color: var(--secondary-color);
        }

        /* Adaptive Styles */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                right: 0;
                top: 80px;
                background-color: var(--background-dark);
                flex-direction: column;
                width: 70%;
                height: calc(100vh - 80px);
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
            }

            .nav-menu.active {
                transform: translateX(0);
            }

            .nav-menu li {
                margin: 20px 0;
            }

            .burger-menu {
                display: block;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }
            
            .footer-content {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-links, .footer-contact, .footer-disclaimer {
                text-align: center;
            }
        }

