: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;
            padding-top: 80px;
        }
        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(--secondary);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            gap: 1.5rem;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            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;
        }
        section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1533777857885-00947d35bfc8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--light);
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2rem;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background-color: var(--primary);
            color: var(--light);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s;
        }
        .btn:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        .about {
            background-color: #111;
        }
        .section-title {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--secondary);
            text-align: center;
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .product-card {
            background-color: #222;
            padding: 1.5rem;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        .product-card:hover {
            transform: translateY(-10px);
        }
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
        }
        .prices {
            background-color: #111;
        }
        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        .price-card {
            background-color: #222;
            padding: 2rem;
            border-radius: 5px;
            flex: 1 1 300px;
            text-align: center;
        }
        .price-card h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .price {
            font-size: 2rem;
            font-weight: bold;
            margin: 1rem 0;
            color: var(--accent);
        }
        .gallery {
            background-color: #000;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        .gallery-item {
            overflow: hidden;
            border-radius: 5px;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item img:hover {
            transform: scale(1.1);
        }
        .feedback {
            background-color: #111;
        }
        .feedback-slider {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }
        .feedback-slide {
            background-color: #222;
            padding: 2rem;
            border-radius: 5px;
            margin: 0 1rem;
            text-align: center;
            transition: all 0.5s ease;
        }
        .feedback-slide img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
        }
        .faq {
            background-color: #000;
        }
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid #333;
            padding-bottom: 1rem;
        }
        .faq-question {
            font-weight: bold;
            color: var(--secondary);
            cursor: pointer;
            padding: 0.5rem 0;
        }
        .faq-answer {
            padding: 0.5rem 0;
            display: none;
        }
        .faq-answer.active {
            display: block;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .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: #222;
            border: none;
            border-radius: 5px;
            color: var(--light);
        }
        footer {
            background-color: #000;
            padding: 2rem 1rem;
            text-align: center;
            border-top: 2px solid var(--secondary);
        }
        .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);
        }
        .disclaimer {
            font-size: 0.8rem;
            color: #777;
            margin-top: 2rem;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #111;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--secondary);
        }
        .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: #222;
            padding: 2rem;
            border-radius: 5px;
            max-width: 500px;
            text-align: center;
        }
        .close-modal {
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: rgba(0, 0, 0, 0.9);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
            }
            .nav-links.active {
                clip-path: circle(1000px at 90% -10%);
            }
            .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: 2rem;
            }
            .price-cards {
                flex-direction: column;
            }
        }

