:root {
            --neon-pink: #ff2a6d;
            --cyber-teal: #05d9e8;
            --dark-purple: #190028;
            --matrix-green: #0afc05;
            --electric-blue: #005678;
            --main-font: 'Courier New', monospace;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--main-font);
        }
        
        body {
            background-color: var(--dark-purple);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(25, 0, 40, 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-pink);
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 0 0 10px var(--neon-pink);
        }
        
        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 5px var(--cyber-teal);
        }
        
        nav ul li a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 10px 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;
        }
        
        section {
            padding: 6rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hero {
            background: linear-gradient(rgba(25, 0, 40, 0.7), rgba(25, 0, 40, 0.7)), url('../img/01.webp') no-repeat center center/cover;
            text-align: center;
            position: relative;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--neon-pink);
            text-shadow: 0 0 15px var(--neon-pink);
            animation: glow 2s infinite alternate;
        }
        
        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--cyber-teal);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--neon-pink);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            margin: 0.5rem;
            box-shadow: 0 0 10px var(--neon-pink);
        }
        
        .btn:hover {
            background-color: var(--cyber-teal);
            box-shadow: 0 0 20px var(--cyber-teal);
        }
        
        .about {
            background-color: var(--electric-blue);
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--matrix-green);
            text-align: center;
            text-shadow: 0 0 10px var(--matrix-green);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: url('../img/12.webp') no-repeat center center/cover;
            border: 3px solid var(--neon-pink);
            box-shadow: 0 0 20px var(--neon-pink);
        }
        
        .products {
            background: linear-gradient(rgba(5, 88, 120, 0.8), rgba(5, 88, 120, 0.8)), url('../img/03.webp') no-repeat center center/cover;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .product-card {
            background-color: rgba(25, 0, 40, 0.8);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--cyber-teal);
            transition: all 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px var(--cyber-teal);
        }
        
        .product-card h3 {
            color: var(--neon-pink);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .prices {
            background-color: var(--dark-purple);
        }
        
        .price-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .price-card {
            background-color: rgba(5, 217, 232, 0.1);
            border: 1px solid var(--cyber-teal);
            padding: 2rem;
            border-radius: 10px;
            width: 300px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px var(--cyber-teal);
        }
        
        .price-card h3 {
            color: var(--neon-pink);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 2.5rem;
            color: var(--matrix-green);
            margin: 1rem 0;
        }
        
        .price-card ul {
            list-style: none;
            margin: 1.5rem 0;
        }
        
        .price-card ul li {
            margin: 0.5rem 0;
        }
        
        .gallery {
            background-color: var(--electric-blue);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border: 2px solid var(--neon-pink);
            position: relative;
        }
        
        .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: linear-gradient(rgba(25, 0, 40, 0.8), rgba(25, 0, 40, 0.8)), url('../img/04.webp') no-repeat center center/cover;
        }
        
        .testimonials {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial {
            background-color: rgba(5, 88, 120, 0.7);
            padding: 2rem;
            border-radius: 10px;
            margin: 1rem;
            border: 1px solid var(--cyber-teal);
            display: none;
        }
        
        .testimonial.active {
            display: block;
            animation: fade 0.5s ease;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: var(--neon-pink);
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .testimonial-nav button {
            background-color: transparent;
            border: 1px solid var(--cyber-teal);
            color: var(--cyber-teal);
            width: 40px;
            height: 40px;
            margin: 0 0.5rem;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-nav button:hover {
            background-color: var(--cyber-teal);
            color: var(--dark-purple);
        }
        
        .faq {
            background-color: var(--electric-blue);
        }
        
        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .accordion-item {
            margin-bottom: 1rem;
            border: 1px solid var(--cyber-teal);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .accordion-header {
            background-color: rgba(25, 0, 40, 0.7);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--neon-pink);
        }
        
        .accordion-content {
            background-color: rgba(5, 217, 232, 0.1);
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion-item.active .accordion-content {
            max-height: 300px;
            padding: 1rem;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(25, 0, 40, 0.7);
            padding: 2rem;
            border-radius: 10px;
            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(5, 217, 232, 0.1);
            border: 1px solid var(--cyber-teal);
            color: white;
            border-radius: 5px;
        }
        
        .form-group textarea {
            height: 150px;
        }
        
        footer {
            background-color: var(--dark-purple);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid var(--neon-pink);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            color: var(--neon-pink);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: var(--cyber-teal);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-pink);
        }
        
        .copyright {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--cyber-teal);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(25, 0, 40, 0.9);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
            border-top: 1px solid var(--neon-pink);
            display: none;
        }
        
        .cookie-banner p {
            flex: 1;
            min-width: 250px;
            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;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 2px solid var(--neon-pink);
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--cyber-teal);
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 10px var(--neon-pink);
            }
            to {
                text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink);
            }
        }
        
        @keyframes fade {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--dark-purple);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                z-index: 999;
            }
            
            nav ul.active {
                right: 0;
            }
            
            nav ul li {
                margin: 1.5rem 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;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            section {
                padding: 5rem 1rem;
            }
        }

