:root {
            --neon-pink: #ff2a6d;
            --cyber-teal: #05d9e8;
            --dark-purple: #1a1a2e;
            --matrix-green: #0f0;
            --electric-blue: #005678;
            --neon-yellow: #d1f700;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark-purple);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)),
                url('../img/06.webp');
            background-size: cover;
            background-attachment: fixed;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--neon-pink);
        }
        
        .logo {
            color: var(--neon-yellow);
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 0 0 5px var(--neon-yellow);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: var(--cyber-teal);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-shadow: 0 0 3px var(--cyber-teal);
        }
        
        nav ul li a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 8px var(--neon-pink);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--cyber-teal);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        main {
            margin-top: 80px;
        }
        
        section {
            padding: 4rem 2rem;
            min-height: 100vh;
        }
        
        .hero {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background-image: 
                linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)),
                url('../ img/02.webp');
            background-size: cover;
            background-position: center;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
            animation: glow 2s infinite alternate;
        }
        
        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin-bottom: 2rem;
            color: var(--cyber-teal);
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: transparent;
            color: var(--neon-yellow);
            border: 2px solid var(--neon-yellow);
            border-radius: 0;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 0 10px var(--neon-yellow);
        }
        
        .btn:hover {
            background-color: var(--neon-yellow);
            color: var(--dark-purple);
            box-shadow: 0 0 20px var(--neon-yellow);
        }
        
        .about {
            background-color: rgba(5, 217, 232, 0.1);
            border-top: 1px solid var(--cyber-teal);
            border-bottom: 1px solid var(--cyber-teal);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: var(--neon-pink);
            text-shadow: 0 0 8px var(--neon-pink);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding: 1rem;
        }
        
        .about-text h3 {
            color: var(--cyber-teal);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .about-text p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-image: url('../img/03.webp');
            background-size: cover;
            background-position: center;
            border: 3px solid var(--neon-pink);
            box-shadow: 0 0 20px var(--neon-pink);
        }
        
        .products {
            background-color: rgba(26, 26, 46, 0.9);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background-color: rgba(0, 86, 120, 0.3);
            border: 1px solid var(--electric-blue);
            padding: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(5, 217, 232, 0.3);
            border-color: var(--cyber-teal);
        }
        
        .product-card h3 {
            color: var(--neon-yellow);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .product-card p {
            margin-bottom: 1rem;
        }
        
        .prices {
            background-color: rgba(209, 247, 0, 0.1);
            border-top: 1px solid var(--neon-yellow);
            border-bottom: 1px solid var(--neon-yellow);
        }
        
        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        
        .price-card {
            background-color: rgba(26, 26, 46, 0.8);
            border: 2px solid var(--neon-pink);
            padding: 2rem;
            width: 300px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px var(--neon-pink);
        }
        
        .price-card h3 {
            color: var(--cyber-teal);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 2.5rem;
            color: var(--neon-yellow);
            margin: 1.5rem 0;
        }
        
        .price span {
            font-size: 1rem;
            color: white;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .price-features li {
            margin-bottom: 0.5rem;
            color: var(--cyber-teal);
        }
        
        .gallery {
            background-color: rgba(255, 42, 109, 0.1);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            position: relative;
            border: 2px solid var(--electric-blue);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            border-color: var(--neon-pink);
            box-shadow: 0 0 15px var(--neon-pink);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback {
            background-color: rgba(0, 86, 120, 0.2);
            border-top: 1px solid var(--electric-blue);
            border-bottom: 1px solid var(--electric-blue);
        }
        
        .testimonials {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial {
            background-color: rgba(26, 26, 46, 0.8);
            padding: 2rem;
            margin: 1rem;
            border: 1px solid var(--cyber-teal);
            display: none;
        }
        
        .testimonial.active {
            display: block;
            animation: fadeIn 1s;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            color: white;
        }
        
        .testimonial-author {
            text-align: right;
            color: var(--neon-yellow);
            font-weight: bold;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .testimonial-nav button {
            background: none;
            border: none;
            color: var(--cyber-teal);
            font-size: 1.5rem;
            margin: 0 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-nav button:hover {
            color: var(--neon-pink);
        }
        
        .faq {
            background-color: rgba(5, 217, 232, 0.1);
        }
        
        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .accordion-item {
            margin-bottom: 1rem;
            border: 1px solid var(--electric-blue);
        }
        
        .accordion-header {
            background-color: rgba(0, 86, 120, 0.3);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--neon-yellow);
        }
        
        .accordion-header:hover {
            background-color: rgba(0, 86, 120, 0.5);
        }
        
        .accordion-content {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: rgba(26, 26, 46, 0.8);
        }
        
        .accordion-item.active .accordion-content {
            padding: 1rem;
            max-height: 500px;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(26, 26, 46, 0.8);
            padding: 2rem;
            border: 1px solid var(--neon-pink);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--cyber-teal);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(0, 86, 120, 0.3);
            border: 1px solid var(--electric-blue);
            color: white;
        }
        
        .form-group textarea {
            min-height: 150px;
        }
        
        footer {
            background-color: var(--dark-purple);
            color: white;
            padding: 3rem 2rem;
            border-top: 1px solid var(--neon-pink);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            color: var(--neon-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-section ul li a {
            color: var(--cyber-teal);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: var(--neon-pink);
        }
        
        .contact-info {
            margin-top: 1rem;
        }
        
        .contact-info p {
            margin-bottom: 0.5rem;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--electric-blue);
            margin-top: 2rem;
        }
        
        .disclaimer {
            background-color: rgba(255, 42, 109, 0.1);
            padding: 1rem;
            margin-top: 2rem;
            font-size: 0.8rem;
            border-top: 1px solid var(--neon-pink);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--dark-purple);
            color: white;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--cyber-teal);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            flex: 1;
            margin-right: 1rem;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: var(--dark-purple);
            padding: 2rem;
            max-width: 500px;
            width: 90%;
            border: 2px solid var(--neon-pink);
            text-align: center;
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            color: var(--cyber-teal);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 5px var(--neon-pink);
            }
            to {
                text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark-purple);
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                border-bottom: 1px solid var(--neon-pink);
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
        }

