:root {
            --primary: #8a2be2;
            --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);
            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(--accent);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        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;
        }
        main {
            margin-top: 80px;
        }
        section {
            padding: 4rem 2rem;
        }
        .hero {
            height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/12.webp') no-repeat center/cover;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
            text-shadow: 0 0 10px var(--primary);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 2rem;
        }
        .btn {
            padding: 0.8rem 2rem;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
        .btn:hover {
            background-color: var(--accent);
            transform: scale(1.05);
        }
        .about, .products, .prices, .gallery, .feedback, .faq {
            text-align: center;
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--secondary);
        }
        .about-content, .product-list, .price-cards, .gallery-grid, .feedback-slider, .faq-list {
            max-width: 1200px;
            margin: 0 auto;
        }
        .product-list, .price-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }
        .product-card, .price-card {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
            width: 300px;
            transition: all 0.3s;
        }
        .product-card:hover, .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 255, 157, 0.3);
        }
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary);
            margin: 1rem 0;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .gallery-grid img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .gallery-grid img:hover {
            transform: scale(1.05);
        }
        .feedback-slider {
            position: relative;
            overflow: hidden;
        }
        .feedback-item {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
            margin: 0 1rem;
            text-align: left;
        }
        .feedback-item h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .faq-list {
            text-align: left;
        }
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 1rem;
        }
        .faq-question {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: var(--secondary);
            cursor: pointer;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--primary);
            color: var(--light);
            border-radius: 5px;
        }
        footer {
            background-color: var(--dark);
            padding: 2rem;
            text-align: center;
            border-top: 1px solid var(--primary);
        }
        footer ul {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 2rem;
            margin-bottom: 1rem;
        }
        footer ul li a {
            color: var(--light);
            text-decoration: none;
        }
        .disclaimer {
            font-size: 0.8rem;
            opacity: 0.7;
            margin-top: 2rem;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--dark);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--primary);
            z-index: 1000;
        }
        .cookie-banner p {
            max-width: 80%;
        }
        .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);
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 50%;
                height: calc(100vh - 80px);
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s;
            }
            nav ul.active {
                right: 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);
            }
        }

