* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary-color: #9d4edd;
            --secondary-color: #c77dff;
            --accent-color: #e0aaff;
            --text-color: #240046;
            --light-color: #ffffff;
            --dark-color: #10002b;
            --neon-green: #39ff14;
        }
        
        body {
            background-color: var(--dark-color);
            color: var(--light-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(16, 0, 43, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--neon-green);
            box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--neon-green);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px var(--neon-green);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: var(--light-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--neon-green);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-green);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--light-color);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(16, 0, 43, 0.9), rgba(36, 0, 70, 0.8)), url('../img/06.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(157, 78, 221, 0.3) 0%, transparent 50%);
            animation: pulse 4s infinite alternate;
        }
        
        @keyframes pulse {
            0% {
                opacity: 0.3;
                transform: scale(1);
            }
            100% {
                opacity: 0.5;
                transform: scale(1.1);
            }
        }
        
        .hero-content {
            text-align: center;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--neon-green);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 15px rgba(57, 255, 20, 0.7);
            animation: glow 2s infinite alternate;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(57, 255, 20, 0.7);
            }
            to {
                text-shadow: 0 0 20px rgba(57, 255, 20, 0.9), 0 0 30px rgba(57, 255, 20, 0.5);
            }
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--accent-color);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: var(--light-color);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: var(--neon-green);
            transition: width 0.3s ease;
            z-index: -1;
        }
        
        .btn:hover::before {
            width: 100%;
        }
        
        .btn:hover {
            color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(157, 78, 221, 0.4);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--dark-color);
            position: relative;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--neon-green);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent-color);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--light-color);
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: rgba(36, 0, 70, 0.3);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background-color: rgba(16, 0, 43, 0.7);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(157, 78, 221, 0.3);
            position: relative;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(157, 78, 221, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card:hover::before {
            opacity: 1;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(157, 78, 221, 0.4);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }
        
        .product-info p {
            margin-bottom: 15px;
            color: var(--light-color);
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: var(--dark-color);
        }
        
        .prices-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }
        
        .price-card {
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            background-color: rgba(36, 0, 70, 0.7);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(157, 78, 221, 0.3);
            transition: all 0.3s ease;
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(157, 78, 221, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .price-card:hover::before {
            opacity: 1;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(157, 78, 221, 0.4);
        }
        
        .price-card.featured {
            border: 2px solid var(--neon-green);
            transform: scale(1.05);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--neon-green);
            margin-bottom: 20px;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-card ul li {
            margin-bottom: 10px;
            color: var(--light-color);
            position: relative;
            padding-left: 25px;
        }
        
        .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--neon-green);
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: rgba(36, 0, 70, 0.3);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(157, 78, 221, 0.4);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(16, 0, 43, 0.8));
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay p {
            color: var(--light-color);
            font-weight: bold;
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: var(--dark-color);
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background-color: rgba(36, 0, 70, 0.7);
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .feedback-item p {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--light-color);
        }
        
        .feedback-item h4 {
            font-size: 1.2rem;
            color: var(--secondary-color);
        }
        
        .feedback-item .stars {
            color: var(--neon-green);
            margin-bottom: 15px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(224, 170, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--neon-green);
            transform: scale(1.2);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: rgba(36, 0, 70, 0.3);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            background-color: rgba(16, 0, 43, 0.7);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid rgba(157, 78, 221, 0.3);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(157, 78, 221, 0.2);
        }
        
        .faq-question h3 {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        
        .faq-icon {
            font-size: 1.5rem;
            color: var(--neon-green);
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
        }
        
        .faq-answer p {
            padding: 20px 0;
            color: var(--light-color);
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: var(--dark-color);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: rgba(36, 0, 70, 0.7);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--secondary-color);
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(16, 0, 43, 0.7);
            border: 1px solid rgba(157, 78, 221, 0.3);
            border-radius: 5px;
            color: var(--light-color);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-green);
            box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-btn:hover {
            background-color: var(--neon-green);
            color: var(--dark-color);
        }
        
        /* Modal */
        .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-color);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            position: relative;
            border: 2px solid var(--neon-green);
            box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 2rem;
            color: var(--light-color);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .modal-close:hover {
            color: var(--neon-green);
        }
        
        .modal h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--neon-green);
        }
        
        .modal p {
            margin-bottom: 30px;
            color: var(--light-color);
        }
        
        .modal-btn {
            padding: 10px 25px;
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modal-btn:hover {
            background-color: var(--neon-green);
            color: var(--dark-color);
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 30px 0;
            background-color: rgba(16, 0, 43, 0.9);
            text-align: center;
            border-top: 1px solid rgba(157, 78, 221, 0.3);
        }
        
        .disclaimer p {
            max-width: 800px;
            margin: 0 auto;
            color: var(--accent-color);
            font-size: 0.9rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            padding: 50px 0 20px;
            border-top: 2px solid var(--neon-green);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-green);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: var(--light-color);
        }
        
        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(157, 78, 221, 0.3);
            text-align: center;
            color: var(--accent-color);
            font-size: 0.9rem;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: rgba(16, 0, 43, 0.95);
            border: 1px solid rgba(157, 78, 221, 0.5);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            z-index: 1500;
            display: none;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
            color: var(--light-color);
            font-size: 0.9rem;
        }
        
        .cookie-text a {
            color: var(--neon-green);
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: var(--neon-green);
            color: var(--dark-color);
        }
        
        .cookie-accept:hover {
            background-color: var(--accent-color);
        }
        
        .cookie-reject {
            background-color: transparent;
            color: var(--light-color);
            border: 1px solid var(--light-color);
        }
        
        .cookie-reject:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: rgba(16, 0, 43, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .price-card {
                min-width: 100%;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

