:root {
            --primary: #6a0dad;
            --secondary: #c0ff00;
            --dark: #1a1a1a;
            --light: #f0f0f0;
            --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;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            padding: 1rem;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 1.5rem;
        }
        .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;
        }
        section {
            padding: 4rem 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-1603833665858-e61a17a74228?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--dark);
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s;
            margin: 0.5rem;
        }
        .btn:hover {
            background-color: var(--accent);
            color: var(--light);
            transform: translateY(-3px);
        }
        .about {
            background-color: var(--light);
            color: var(--dark);
        }
        .about h2 {
            color: var(--primary);
            margin-bottom: 2rem;
            text-align: center;
        }
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .about-text {
            flex: 1;
            min-width: 300px;
            padding: 1rem;
        }
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .products {
            background-color: var(--primary);
            text-align: center;
        }
        .products h2 {
            margin-bottom: 2rem;
            color: var(--secondary);
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .product-card {
            background-color: var(--light);
            color: var(--dark);
            padding: 2rem;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .product-card:hover {
            transform: translateY(-10px);
        }
        .product-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .prices {
            background-color: var(--light);
            color: var(--dark);
            text-align: center;
        }
        .prices h2 {
            color: var(--primary);
            margin-bottom: 2rem;
        }
        .price-table {
            width: 100%;
            margin: 0 auto;
            border-collapse: collapse;
        }
        .price-table th, .price-table td {
            padding: 1rem;
            border: 1px solid var(--dark);
        }
        .price-table th {
            background-color: var(--primary);
            color: var(--light);
        }
        .price-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        .gallery {
            text-align: center;
        }
        .gallery h2 {
            margin-bottom: 2rem;
            color: var(--secondary);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }
        .gallery-item:hover {
            transform: scale(1.05);
        }
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item img:hover {
            transform: scale(1.1);
        }
        .feedback {
            background-color: var(--light);
            color: var(--dark);
            text-align: center;
        }
        .feedback h2 {
            color: var(--primary);
            margin-bottom: 2rem;
        }
        .slider {
            position: relative;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
        }
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        .slide {
            min-width: 100%;
            padding: 2rem;
        }
        .slide-content {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .slide-content p {
            margin-bottom: 1rem;
            font-style: italic;
        }
        .slide-content h4 {
            color: var(--primary);
        }
        .controls {
            margin-top: 1rem;
        }
        .controls button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            margin: 0 0.5rem;
            cursor: pointer;
            border-radius: 5px;
        }
        .controls button:hover {
            background-color: var(--accent);
        }
        .faq {
            text-align: center;
        }
        .faq h2 {
            margin-bottom: 2rem;
            color: var(--secondary);
        }
        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        .accordion-item {
            margin-bottom: 1rem;
            border: 1px solid var(--secondary);
            border-radius: 5px;
            overflow: hidden;
        }
        .accordion-header {
            background-color: var(--primary);
            color: var(--light);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .accordion-content {
            background-color: var(--dark);
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .accordion-content p {
            padding: 1rem;
        }
        .accordion-item.active .accordion-content {
            max-height: 300px;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 2rem;
            background-color: var(--light);
            color: var(--dark);
            border-radius: 10px;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .form-group textarea {
            height: 150px;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1001;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background-color: var(--light);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            text-align: center;
            position: relative;
        }
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            color: var(--light);
            padding: 1rem;
            text-align: center;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .cookie-banner p {
            margin-bottom: 1rem;
            flex: 1;
        }
        .cookie-banner button {
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 0.5rem 1rem;
            margin-left: 1rem;
            cursor: pointer;
            border-radius: 5px;
        }
        footer {
            background-color: var(--primary);
            color: var(--light);
            padding: 2rem;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: var(--light);
            margin: 0 1rem;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .footer-contact {
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            .nav-links.active {
                transform: translateY(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 h1 {
                font-size: 2rem;
            }
            .about-content {
                flex-direction: column;
            }
        }

