:root {
            --primary: #6a00f4;
            --secondary: #00ff88;
            --dark: #121212;
            --light: #f0f0f0;
            --accent: #ff00aa;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        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: rgba(18, 18, 18, 0.9);
            backdrop-filter: blur(10px);
            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-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--primary);
        }
        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: 500;
            transition: color 0.3s;
            position: relative;
        }
        nav ul li a:hover {
            color: var(--secondary);
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }
        nav ul li a:hover::after {
            width: 100%;
        }
        .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-1545205597-3d9d02c29597?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: fadeIn 1.5s ease-in-out;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--light);
            animation: fadeIn 2s ease-in-out;
        }
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--light);
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0.5rem;
            animation: fadeIn 2.5s ease-in-out;
        }
        .btn:hover {
            background-color: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
        }
        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }
        .btn-secondary:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }
        .about {
            background-color: var(--dark);
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--secondary);
            text-align: center;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 3rem;
        }
        .about-text {
            flex: 1;
            min-width: 300px;
            padding: 1rem;
        }
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--light);
        }
        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(106, 0, 244, 0.3);
        }
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        .about-image:hover img {
            transform: scale(1.05);
        }
        .products {
            background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .product-card {
            background-color: rgba(30, 30, 30, 0.8);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--primary);
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(106, 0, 244, 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: 1.5rem;
        }
        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .product-info p {
            margin-bottom: 1.5rem;
            color: var(--light);
        }
        .prices {
            background-color: var(--dark);
        }
        .pricing-plans {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }
        .price-card {
            background-color: rgba(30, 30, 30, 0.8);
            border-radius: 10px;
            padding: 2rem;
            width: 300px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(106, 0, 244, 0.4);
        }
        .price-card.popular::before {
            content: 'POPULAR';
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent);
            color: var(--light);
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            border-bottom-left-radius: 10px;
        }
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        .price span {
            font-size: 1rem;
            color: var(--light);
        }
        .price-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        .price-features li {
            margin-bottom: 0.8rem;
            color: var(--light);
            position: relative;
            padding-left: 1.5rem;
        }
        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }
        .gallery {
            background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(106, 0, 244, 0.4);
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .feedback {
            background-color: var(--dark);
        }
        .feedback-slider {
            max-width: 800px;
            margin: 3rem auto 0;
            position: relative;
            overflow: hidden;
        }
        .feedback-slide {
            background-color: rgba(30, 30, 30, 0.8);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--primary);
            display: none;
            animation: fadeIn 1s ease-in-out;
        }
        .feedback-slide.active {
            display: block;
        }
        .feedback-slide img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 3px solid var(--secondary);
        }
        .feedback-slide p {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: var(--light);
        }
        .feedback-slide h4 {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        .feedback-slide .stars {
            color: var(--accent);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: var(--light);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: all 0.3s;
        }
        .slider-dot.active {
            background-color: var(--secondary);
            opacity: 1;
        }
        .faq {
            background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), url('https://images.unsplash.com/photo-1518611012118-696072aa579a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        .faq-container {
            max-width: 800px;
            margin: 3rem auto 0;
        }
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--primary);
            border-radius: 10px;
            overflow: hidden;
        }
        .faq-question {
            background-color: rgba(30, 30, 30, 0.8);
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        .faq-question:hover {
            background-color: rgba(106, 0, 244, 0.2);
        }
        .faq-question h3 {
            font-size: 1.2rem;
            color: var(--secondary);
        }
        .faq-question .icon {
            font-size: 1.5rem;
            color: var(--secondary);
            transition: transform 0.3s;
        }
        .faq-question.active .icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            background-color: rgba(30, 30, 30, 0.6);
        }
        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--light);
        }
        .contact-form {
            max-width: 600px;
            margin: 3rem auto 0;
            background-color: rgba(30, 30, 30, 0.8);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--primary);
        }
        .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(50, 50, 50, 0.5);
            border: 1px solid var(--primary);
            border-radius: 5px;
            color: var(--light);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        footer {
            background-color: #000;
            color: var(--light);
            padding: 3rem 2rem;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        .footer-section ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section ul li a:hover {
            color: var(--secondary);
        }
        .footer-bottom {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--primary);
        }
        .disclaimer {
            font-size: 0.8rem;
            color: #888;
            margin-top: 2rem;
            text-align: center;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(18, 18, 18, 0.95);
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 2px solid var(--primary);
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
        }
        .cookie-banner.show {
            transform: translateY(0);
        }
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-right: 1rem;
            margin-bottom: 1rem;
        }
        .cookie-banner p {
            color: var(--light);
            margin-bottom: 0.5rem;
        }
        .cookie-banner a {
            color: var(--secondary);
            text-decoration: none;
        }
        .cookie-buttons {
            display: flex;
            gap: 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;
            animation: fadeIn 0.3s ease-in-out;
        }
        .modal-content {
            background-color: var(--dark);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 2px solid var(--secondary);
            position: relative;
        }
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: var(--light);
            cursor: pointer;
            transition: color 0.3s;
        }
        .close-modal:hover {
            color: var(--secondary);
        }
        .modal h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .modal p {
            margin-bottom: 1.5rem;
            color: var(--light);
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(18, 18, 18, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s ease;
                backdrop-filter: blur(10px);
            }
            nav ul.show {
                left: 0;
            }
            nav ul li {
                margin: 1.5rem 0;
            }
            .burger {
                display: block;
            }
            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            .burger.active .line2 {
                opacity: 0;
            }
            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }

