@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');
        :root {
            --primary-color: #00ffff; /* Neon Blue */
            --secondary-color: #ff00ff; /* Fuchsia */
            --background-color: #1a1a1a; /* Dark Gray */
            --text-color: #e0e0e0;
            --accent-color: #333333;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--primary-color);
            text-shadow: 0 0 5px var(--primary-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.9);
            padding: 1rem 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
            box-shadow: 0 2px 10px 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;
            font-weight: 700;
            text-decoration: none;
            color: var(--primary-color);
            text-shadow: 0 0 8px var(--primary-color);
            transition: transform 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 2px;
            background: var(--secondary-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--secondary-color);
        }

        .nav-menu a:hover::after {
            transform: scaleX(1);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1000;
        }

        .burger-menu .bar {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s ease-in-out;
            box-shadow: 0 0 5px var(--primary-color);
        }

        /* Mobile Nav */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--accent-color);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 3rem;
                transition: right 0.3s ease;
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
            }

            .nav-menu.active {
                right: 0;
            }

            .burger-menu {
                display: flex;
            }
        }
        
        /* Sections */
        section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            animation: fadeIn 1s ease-in-out;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 800px;
            margin: 0 auto 50px;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/05.webp') no-repeat center center/cover;
            background-attachment: fixed;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 255, 255, 0.1);
            animation: pulse 5s infinite;
        }

        .hero-content {
            z-index: 1;
            padding: 20px;
            animation: fadeInUp 1s ease-in-out;
        }

        .hero-title {
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: var(--secondary-color);
            text-shadow: 0 0 5px var(--secondary-color);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: var(--secondary-color);
            color: white;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 50px;
            border: 2px solid var(--secondary-color);
            transition: all 0.3s ease;
            box-shadow: 0 0 10px var(--secondary-color);
        }

        .cta-button:hover {
            background: transparent;
            color: var(--secondary-color);
            box-shadow: 0 0 20px var(--secondary-color);
            transform: scale(1.1);
        }
        
        /* About Section */
        .about .container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 1;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 1s ease-in-out;
        }

        .about-image.animate {
            transform: translateX(0);
            opacity: 1;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px var(--primary-color);
        }
        
        .about-content {
            flex: 1;
        }

        .about-content h2 {
            margin-bottom: 20px;
        }

        .about-content p {
            margin-bottom: 15px;
        }

        /* Products Section */
        .products .container {
            text-align: center;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-item {
            background-color: var(--accent-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            transform: translateY(50px);
            opacity: 0;
        }

        .product-item.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .product-item h3 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .product-item p {
            margin-bottom: 15px;
        }

        /* Prices Section */
        .prices .container {
            text-align: center;
        }

        .price-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .price-card {
            background-color: var(--accent-color);
            padding: 40px 20px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
            position: relative;
            overflow: hidden;
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.5s ease-in-out;
        }

        .price-card.animate {
            transform: scale(1);
            opacity: 1;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 120%;
            height: 120%;
            background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
            z-index: 0;
            transform: rotate(10deg);
        }

        .price-card-content {
            position: relative;
            z-index: 1;
        }

        .price-card h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .price-card .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            text-shadow: 0 0 8px var(--primary-color);
            margin-bottom: 10px;
        }

        .price-card .price span {
            font-size: 1.2rem;
            font-weight: 400;
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .price-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }

        .price-card ul li::before {
            content: '✓';
            color: var(--secondary-color);
            position: absolute;
            left: 0;
        }

        .price-card .cta-button {
            background-color: var(--primary-color);
            color: var(--background-color);
            border-color: var(--primary-color);
        }
        
        .price-card .cta-button:hover {
            background-color: transparent;
            color: var(--primary-color);
        }

        /* Gallery Section */
        .gallery .container {
            text-align: center;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
            transition: transform 0.3s ease;
            transform: scale(0.9);
            opacity: 0;
        }
        
        .gallery-item.animate {
            transform: scale(1);
            opacity: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback .container {
            text-align: center;
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }

        .feedback-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            padding: 40px;
            background-color: var(--accent-color);
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
            text-align: left;
            position: relative;
        }
        
        .feedback-card blockquote {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .feedback-card .author {
            font-weight: 700;
            color: var(--secondary-color);
        }

        .slider-nav {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .slider-nav button {
            background-color: var(--primary-color);
            border: none;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
            box-shadow: 0 0 5px var(--primary-color);
        }

        .slider-nav button.active {
            background-color: var(--secondary-color);
            box-shadow: 0 0 8px var(--secondary-color);
        }
        
        /* FAQ Section */
        .faq .container {
            max-width: 800px;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid var(--accent-color);
            padding-bottom: 15px;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.5s ease-in-out;
        }
        
        .faq-item.animate {
            transform: translateX(0);
            opacity: 1;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 700;
            color: var(--primary-color);
            padding: 10px 0;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }

        .faq-answer p {
            padding-top: 10px;
        }
        
        /* Contact Form Section */
        .contact-form-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/08.webp) no-repeat center center/cover;
            background-attachment: fixed;
        }
        
        .contact-form-section .section-title {
            color: var(--text-color);
            text-shadow: 0 0 5px var(--primary-color);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(26, 26, 26, 0.8);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.5s ease-in-out;
        }
        
        .contact-form.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--secondary-color);
        }
        
        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--primary-color);
            background-color: transparent;
            color: var(--text-color);
            border-radius: 5px;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus {
            border-color: var(--secondary-color);
            outline: none;
            box-shadow: 0 0 5px var(--secondary-color);
        }

        .form-button {
            display: block;
            width: 100%;
            padding: 15px;
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px var(--secondary-color);
        }

        .form-button:hover {
            background-color: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            box-shadow: 0 0 20px var(--secondary-color);
        }
        
        /* Modal Popup */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.8);
            backdrop-filter: blur(5px);
        }
        
        .modal-content {
            background-color: var(--accent-color);
            margin: 15% auto;
            padding: 40px;
            border: 1px solid var(--secondary-color);
            width: 80%;
            max-width: 500px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 0 20px var(--secondary-color);
            position: relative;
            animation: fadeInScale 0.5s ease-in-out;
        }
        
        .close-button {
            color: #aaa;
            position: absolute;
            top: 10px;
            right: 25px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .close-button:hover,
        .close-button:focus {
            color: var(--primary-color);
            text-decoration: none;
        }

        /* Disclaimer */
        .disclaimer {
            text-align: center;
            padding: 20px 0;
            font-size: 0.9rem;
            color: #888;
        }
        
        /* Footer */
        footer {
            background-color: var(--accent-color);
            padding: 50px 0 20px;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
            text-align: left;
        }
        
        .footer-section h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .footer-section a {
            color: var(--text-color);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background-color: var(--accent-color);
            border: 1px solid var(--secondary-color);
            border-radius: 10px;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
            animation: fadeInScale 0.5s ease-in-out;
        }
        
        .cookie-banner p {
            font-size: 0.9rem;
            color: var(--text-color);
        }
        
        .cookie-banner-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-banner button {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .cookie-accept:hover {
            background-color: transparent;
            color: var(--secondary-color);
            border: 1px solid var(--secondary-color);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(0, 255, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
        }

