: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);
            overflow-x: hidden;
            padding-top: 80px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--secondary);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 2px;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-size: 18px;
            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: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .hero {
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            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;
            color: var(--light);
            position: relative;
            overflow: hidden;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 5px;
        }
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            max-width: 800px;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            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);
        }
        .btn-secondary {
            background-color: transparent;
            border-color: var(--secondary);
            color: var(--secondary);
            margin-left: 15px;
        }
        .btn-secondary:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: var(--secondary);
            text-align: center;
            position: relative;
        }
        h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background-color: var(--accent);
            margin: 15px auto;
        }
        h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 50px;
        }
        .about-text {
            flex: 1;
        }
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(106, 13, 173, 0.3);
        }
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        .about-image:hover img {
            transform: scale(1.05);
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .product-card {
            background-color: rgba(0, 0, 0, 0.7);
            border: 1px solid var(--primary);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            position: relative;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(106, 13, 173, 0.4);
        }
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        .product-info {
            padding: 20px;
        }
        .product-info h3 {
            margin-bottom: 10px;
        }
        .price {
            font-size: 1.5rem;
            color: var(--secondary);
            font-weight: bold;
            margin: 15px 0;
        }
        .prices-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        .price-card {
            background-color: rgba(0, 0, 0, 0.7);
            border: 2px solid var(--primary);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
        }
        .price-card:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(106, 13, 173, 0.4);
        }
        .price-card h3 {
            color: var(--secondary);
            margin-bottom: 20px;
        }
        .price-card .price {
            font-size: 2.5rem;
            margin: 20px 0;
        }
        .price-features {
            list-style: none;
            margin-bottom: 30px;
        }
        .price-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        .price-features li::before {
            content: '✓';
            color: var(--secondary);
            position: absolute;
            left: 0;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            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-container {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
            overflow: hidden;
        }
        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        .feedback-card {
            min-width: 100%;
            padding: 30px;
            background-color: rgba(0, 0, 0, 0.7);
            border: 1px solid var(--primary);
            border-radius: 10px;
        }
        .feedback-author {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .feedback-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid var(--secondary);
        }
        .author-info h4 {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        .author-info p {
            color: #aaa;
        }
        .feedback-text {
            font-style: italic;
            line-height: 1.6;
        }
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #333;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .slider-dot.active {
            background-color: var(--secondary);
        }
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--primary);
            border-radius: 10px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px 20px;
            background-color: rgba(106, 13, 173, 0.2);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--primary);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--secondary);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--primary);
            border-radius: 5px;
            color: var(--light);
        }
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        .submit-btn {
            width: 100%;
            padding: 15px;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #5a0c9d;
        }
        .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: 30px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 2px solid var(--secondary);
        }
        .modal-content h3 {
            color: var(--secondary);
            margin-bottom: 20px;
        }
        .close-modal {
            margin-top: 20px;
            padding: 10px 20px;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .disclaimer {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 20px;
            margin-top: 50px;
            border-top: 2px solid var(--primary);
            font-size: 0.9rem;
            color: #aaa;
        }
        footer {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 50px 0 20px;
            border-top: 2px solid var(--secondary);
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary);
            margin-bottom: 20px;
            display: block;
        }
        .footer-links h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .contact-info p {
            margin-bottom: 10px;
            color: #aaa;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary);
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #666;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 2px solid var(--primary);
        }
        .cookie-banner p {
            margin-right: 20px;
        }
        .cookie-banner button {
            padding: 8px 20px;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            white-space: nowrap;
        }
        .cookie-banner button:hover {
            background-color: #5a0c9d;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                z-index: 999;
                border-bottom: 2px solid var(--primary);
            }
            .nav-links.active {
                transform: translateY(0);
            }
            .nav-links li {
                margin: 15px 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;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .about-content {
                flex-direction: column;
            }
            .btn {
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }
            .btn-secondary {
                margin-left: 0;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 1s ease forwards;
        }
        .delay-1 {
            animation-delay: 0.2s;
        }
        .delay-2 {
            animation-delay: 0.4s;
        }
        .delay-3 {
            animation-delay: 0.6s;
        }
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

