:root {
            --primary: #6e00ff;
            --secondary: #00ff9d;
            --dark: #0a0a0a;
            --light: #f0f0f0;
            --accent: #ff00aa;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.9);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--primary);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary);
            text-shadow: 0 0 5px var(--secondary);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 1.5rem;
        }
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            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;
        }
        main {
            margin-top: 80px;
        }
        section {
            padding: 4rem 2rem;
        }
        .hero {
            background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('../img/02.webp') no-repeat center/cover;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin-bottom: 2rem;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        .btn:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        .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, .price-card {
            background-color: rgba(30, 30, 30, 0.8);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--primary);
            transition: transform 0.3s;
        }
        .product-card:hover, .price-card:hover {
            transform: translateY(-10px);
        }
        .price-cards {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .price-card {
            flex: 1 1 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: auto;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .gallery-item img:hover {
            transform: scale(1.05);
        }
        .feedback-slider {
            position: relative;
            overflow: hidden;
        }
        .feedback-item {
            background-color: rgba(30, 30, 30, 0.8);
            padding: 2rem;
            border-radius: 10px;
            margin: 0 auto;
            max-width: 800px;
            text-align: center;
            border: 1px solid var(--primary);
        }
        .feedback-item p {
            font-style: italic;
            margin-bottom: 1rem;
        }
        .feedback-item .author {
            font-weight: bold;
            color: var(--secondary);
        }
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--primary);
            border-radius: 5px;
            overflow: hidden;
        }
        .faq-question {
            padding: 1rem;
            background-color: rgba(30, 30, 30, 0.8);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 1rem;
            background-color: rgba(20, 20, 20, 0.8);
            display: none;
        }
        .faq-question.active + .faq-answer {
            display: block;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(30, 30, 30, 0.8);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--primary);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(20, 20, 20, 0.8);
            border: 1px solid var(--primary);
            border-radius: 5px;
            color: var(--light);
        }
        footer {
            background-color: rgba(10, 10, 10, 0.9);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid var(--primary);
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            color: var(--light);
            text-decoration: none;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .footer-contacts {
            margin-bottom: 2rem;
        }
        .disclaimer {
            font-size: 0.8rem;
            opacity: 0.7;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(10, 10, 10, 0.9);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--primary);
            z-index: 1000;
        }
        .cookie-banner p {
            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);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            text-align: center;
            border: 1px solid var(--primary);
        }
        .modal-content p {
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(10, 10, 10, 0.9);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s;
            }
            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;
            }
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
            .price-card {
                width: 100%;
            }
        }

