:root {
            --primary: #6a00f4;
            --secondary: #00ff88;
            --dark: #0a0a0a;
            --light: #f0f0f0;
            --accent: #ff00aa;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.9);
            padding: 1rem;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--primary);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 1.5rem;
        }
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: var(--secondary);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        main {
            margin-top: 80px;
        }
        section {
            padding: 4rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero {
            background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--primary);
            color: var(--light);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: var(--accent);
        }
        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: var(--dark);
            border-bottom: 1px solid var(--primary);
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--secondary);
            text-align: center;
        }
        .about-content, .product-grid, .price-cards, .gallery-grid, .feedback-slider, .faq-list {
            max-width: 1200px;
            margin: 0 auto;
        }
        .product-grid, .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .product-card, .gallery-item {
            background-color: rgba(106, 0, 244, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid var(--primary);
            transition: transform 0.3s;
        }
        .product-card:hover, .gallery-item:hover {
            transform: translateY(-10px);
        }
        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        .price-card {
            background-color: rgba(0, 255, 136, 0.1);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--secondary);
            width: 300px;
            text-align: center;
        }
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 1rem 0;
            color: var(--accent);
        }
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
        }
        .feedback-slider {
            position: relative;
            overflow: hidden;
        }
        .feedback-item {
            background-color: rgba(255, 0, 170, 0.1);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--accent);
            margin: 0 1rem;
            text-align: center;
        }
        .feedback-item p {
            font-style: italic;
            margin-bottom: 1rem;
        }
        .feedback-item .author {
            font-weight: bold;
            color: var(--secondary);
        }
        .faq-list {
            max-width: 800px;
        }
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--primary);
            padding-bottom: 1rem;
        }
        .faq-item h3 {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item p {
            display: none;
            padding-top: 1rem;
        }
        .faq-item.active p {
            display: block;
        }
        .disclaimer {
            background-color: rgba(10, 10, 10, 0.9);
            padding: 1rem;
            text-align: center;
            font-size: 0.8rem;
        }
        footer {
            background-color: var(--dark);
            padding: 2rem;
            text-align: center;
            border-top: 2px solid var(--primary);
        }
        footer .links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        footer .links a {
            color: var(--light);
            text-decoration: none;
        }
        footer .links a:hover {
            color: var(--secondary);
        }
        footer .contacts {
            margin-top: 1.5rem;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            color: var(--light);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
        }
        .cookie-banner button {
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
            font-weight: bold;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(106, 0, 244, 0.1);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--primary);
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--primary);
            color: var(--light);
        }
        .contact-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            cursor: pointer;
            font-weight: bold;
        }
        .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);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            border: 2px solid var(--secondary);
            max-width: 500px;
        }
        .modal-content p {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .modal-content button {
            padding: 0.5rem 1rem;
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            cursor: pointer;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s ease;
            }
            nav ul.active {
                left: 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;
            }
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
        }

