:root {
            --primary: #6a00f4;
            --secondary: #00ff88;
            --dark: #000;
            --light: #fff;
            --accent: #ff00ff;
        }
        * {
            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(0, 0, 0, 0.9);
            z-index: 1000;
            padding: 1rem 2rem;
            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-transform: uppercase;
            letter-spacing: 2px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 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 ease;
        }
        section {
            padding: 5rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
            text-shadow: 0 0 10px var(--primary);
        }
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--primary);
            color: var(--light);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid var(--primary);
        }
        .btn:hover {
            background-color: transparent;
            color: var(--primary);
        }
        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: var(--dark);
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--secondary);
            text-align: center;
        }
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        .about-text {
            flex: 1;
        }
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px var(--primary);
        }
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .product-card {
            background-color: rgba(106, 0, 244, 0.1);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--primary);
            transition: transform 0.3s;
        }
        .product-card:hover {
            transform: translateY(-10px);
        }
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .price-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            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(--accent);
        }
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary);
            margin: 1rem 0;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            position: relative;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        .feedback-slide {
            background-color: rgba(255, 0, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--accent);
            text-align: center;
            display: none;
        }
        .feedback-slide.active {
            display: block;
            animation: fade 1s;
        }
        @keyframes fade {
            from {opacity: 0;}
            to {opacity: 1;}
        }
        .client-name {
            font-weight: bold;
            margin-top: 1rem;
            color: var(--secondary);
        }
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: var(--light);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s;
        }
        .slider-dot.active {
            opacity: 1;
            background-color: var(--primary);
        }
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--primary);
        }
        .faq-question {
            padding: 1rem 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        .faq-answer {
            padding: 0 0 1rem;
            display: none;
        }
        .faq-answer.show {
            display: block;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        .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(255, 255, 255, 0.1);
            border: 1px solid var(--primary);
            border-radius: 5px;
            color: var(--light);
        }
        footer {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 2px 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-contact {
            margin-bottom: 2rem;
        }
        .disclaimer {
            font-size: 0.8rem;
            opacity: 0.7;
            max-width: 800px;
            margin: 0 auto;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.9);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 2px solid var(--secondary);
        }
        .cookie-banner p {
            flex: 1;
            margin-right: 2rem;
        }
        .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;
            width: 90%;
            border: 2px solid var(--primary);
            text-align: center;
        }
        .close-modal {
            margin-top: 1rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s;
            }
            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;
            }
            .about-content {
                flex-direction: column;
            }
        }

