:root {
            --primary: #00f0ff;
            --secondary: #ff00f0;
            --dark: #0a0a20;
            --light: #e0e0ff;
            --accent: #f0f000;
            --text: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
            padding-top: 80px;
            background-image: 
                linear-gradient(rgba(10, 10, 32, 0.9), rgba(10, 10, 32, 0.9)),
                url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-attachment: fixed;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 32, 0.95);
            border-bottom: 1px solid var(--primary);
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        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: bold;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            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(--primary);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        section {
            padding: 4rem 0;
            border-bottom: 1px solid rgba(0, 240, 255, 0.2);
        }
        
        h1, h2, h3 {
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        h1 {
            font-size: 3rem;
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
        }
        
        h2 {
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
        }
        
        h2::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: -10px;
            left: 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        h3 {
            font-size: 1.5rem;
            color: var(--secondary);
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--dark);
            text-decoration: none;
            font-weight: bold;
            border-radius: 4px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 240, 255, 0.4);
        }
        
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            border-bottom: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
            opacity: 0.7;
        }
        
        .about {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .about-img {
            flex: 1;
            min-width: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .about-content {
            flex: 1;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .product-card {
            background: rgba(20, 20, 50, 0.7);
            border-radius: 8px;
            padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(0, 240, 255, 0.2);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 240, 255, 0.2);
            border-color: var(--primary);
        }
        
        .product-card h3 {
            margin-bottom: 1rem;
        }
        
        .prices {
            text-align: center;
        }
        
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .price-card {
            background: rgba(20, 20, 50, 0.7);
            border-radius: 8px;
            padding: 2rem;
            transition: transform 0.3s;
            border: 1px solid rgba(255, 0, 240, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .price-card:hover {
            transform: scale(1.05);
            border-color: var(--secondary);
        }
        
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 1.5rem 0;
            color: var(--accent);
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .price-card ul li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
        }
        
        .gallery {
            text-align: center;
        }
        
        .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: 8px;
            height: 250px;
            transition: transform 0.3s;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback-container {
            margin-top: 3rem;
            position: relative;
        }
        
        .feedback-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 1rem;
            scrollbar-width: none;
        }
        
        .feedback-slider::-webkit-scrollbar {
            display: none;
        }
        
        .feedback-card {
            flex: 0 0 100%;
            scroll-snap-align: start;
            background: rgba(20, 20, 50, 0.7);
            border-radius: 8px;
            padding: 2rem;
            margin-right: 1rem;
            border: 1px solid rgba(0, 240, 255, 0.2);
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
            margin-top: 1.5rem;
        }
        
        .feedback-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: var(--primary);
            margin-bottom: 0.2rem;
        }
        
        .author-info p {
            color: var(--light);
            opacity: 0.8;
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(0, 240, 255, 0.3);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dot.active {
            background-color: var(--primary);
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            border: 1px solid rgba(0, 240, 255, 0.2);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1.5rem;
            background: rgba(20, 20, 50, 0.7);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background: rgba(30, 30, 70, 0.7);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            background: rgba(10, 10, 30, 0.7);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 1.5rem;
        }
        
        .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 3rem auto 0;
            background: rgba(20, 20, 50, 0.7);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid rgba(0, 240, 255, 0.2);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background: rgba(10, 10, 30, 0.7);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 4px;
            color: var(--text);
            font-size: 1rem;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        footer {
            background: rgba(5, 5, 15, 0.95);
            padding: 3rem 0 1rem;
            border-top: 1px solid var(--primary);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 1rem;
            display: inline-block;
        }
        
        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--primary);
        }
        
        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
        }
        
        .footer-contact svg {
            width: 20px;
            height: 20px;
            margin-right: 0.5rem;
            fill: var(--primary);
        }
        
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 240, 255, 0.2);
            font-size: 0.9rem;
            color: var(--light);
            opacity: 0.7;
        }
        
        .disclaimer {
            font-size: 0.8rem;
            color: var(--light);
            opacity: 0.7;
            margin-top: 2rem;
            padding: 1rem;
            background: rgba(10, 10, 30, 0.5);
            border-radius: 4px;
        }
        
        .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: var(--dark);
            padding: 2rem;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid var(--primary);
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 30, 0.95);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--primary);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease-out;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin-right: 1rem;
            font-size: 0.9rem;
        }
        
        .cookie-banner .btn {
            flex-shrink: 0;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 32, 0.95);
                padding: 1rem;
                transform: translateY(-150%);
                transition: transform 0.3s ease-out;
                z-index: 999;
                border-bottom: 1px solid var(--primary);
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero {
                min-height: auto;
                padding: 4rem 0;
            }
            
            .hero-content {
                max-width: 100%;
            }
            
            .hero-bg {
                display: none;
            }
            
            .about {
                flex-direction: column;
            }
            
            .about-img {
                width: 100%;
            }
            
            .price-cards, .products-grid {
                grid-template-columns: 1fr;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
                padding: 1rem;
            }
            
            .cookie-banner .btn {
                margin-top: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 3rem 0;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

