:root {
            --primary: #6a0dad;
            --secondary: #39ff14;
            --dark: #000;
            --light: #fff;
            --accent: #ff00ff;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        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(0, 0, 0, 0.9);
            padding: 1rem;
            z-index: 1000;
            border-bottom: 2px solid var(--accent);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        .nav-links 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;
        }
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1533777324565-a040eb52facd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 1rem;
        }
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--light);
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: var(--accent);
        }
        section {
            padding: 5rem 1rem;
        }
        .about, .products, .prices, .gallery, .feedback, .faq {
            max-width: 1200px;
            margin: 0 auto;
        }
        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 {
            margin-top: 2rem;
        }
        .product-grid, .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .product-card, .price-card, .gallery-item {
            background-color: rgba(106, 13, 173, 0.2);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid var(--accent);
            transition: transform 0.3s;
        }
        .product-card:hover, .price-card:hover, .gallery-item:hover {
            transform: translateY(-10px);
        }
        .price-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .price-card {
            flex: 1 1 300px;
            text-align: center;
        }
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 1rem 0;
            color: var(--secondary);
        }
        .gallery-item img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }
        .feedback-slider {
            position: relative;
            overflow: hidden;
        }
        .feedback-item {
            background-color: rgba(57, 255, 20, 0.1);
            padding: 2rem;
            border-radius: 10px;
            margin: 0 1rem;
            text-align: center;
            border: 1px solid var(--secondary);
        }
        .feedback-item p {
            font-style: italic;
            margin-bottom: 1rem;
        }
        .feedback-item .author {
            font-weight: bold;
            color: var(--accent);
        }
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--accent);
            padding-bottom: 1rem;
        }
        .faq-question {
            font-weight: bold;
            color: var(--secondary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            margin-top: 0.5rem;
            display: none;
        }
        .faq-answer.active {
            display: block;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(106, 13, 173, 0.2);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--accent);
        }
        .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;
            border: 1px solid var(--accent);
            border-radius: 5px;
            background-color: rgba(0, 0, 0, 0.5);
            color: var(--light);
        }
        .form-group textarea {
            height: 150px;
        }
        footer {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 2rem 1rem;
            text-align: center;
            border-top: 2px solid var(--accent);
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .footer-contact {
            margin-top: 1.5rem;
        }
        .disclaimer {
            margin-top: 2rem;
            font-size: 0.8rem;
            color: #777;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.9);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--accent);
        }
        .cookie-banner p {
            margin-right: 1rem;
        }
        .cookie-banner button {
            background-color: var(--primary);
            color: var(--light);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
        }
        .cookie-banner button:hover {
            background-color: var(--accent);
        }
        .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;
            border: 2px solid var(--accent);
            max-width: 500px;
            text-align: center;
        }
        .modal-content h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .modal-content p {
            margin-bottom: 1.5rem;
        }
        .modal-content button {
            background-color: var(--primary);
            color: var(--light);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
        }
        .modal-content button:hover {
            background-color: var(--accent);
        }
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background-color: rgba(0, 0, 0, 0.9);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
            }
            .nav-links.active {
                transform: translateX(0);
            }
            .nav-links li {
                margin: 1rem 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-content h1 {
                font-size: 2.5rem;
            }
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
            .price-card {
                width: 100%;
                max-width: 400px;
            }
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            .cookie-banner button {
                margin-top: 1rem;
            }
        }

