@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');
        
        :root {
            --primary-color: #00FFC2;
            --secondary-color: #8C52FF;
            --background-color: #1A1A1A;
            --text-color: #E0E0E0;
            --card-bg-color: #2D2D2D;
            --form-bg-color: #3A3A3A;
            --border-color: #4A4A4A;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto Mono', monospace;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        h1 {
            font-size: 3rem;
            color: var(--primary-color);
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
        }

        p {
            font-size: 1rem;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--secondary-color);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transition: background-color 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .nav-menu {
            display: flex;
            gap: 25px;
            list-style: none;
        }

        .nav-menu a {
            padding: 5px 10px;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover {
            border-bottom: 2px solid var(--primary-color);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            transition: all 0.3s ease;
        }

        section {
            padding: 100px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/12.webp');
            background-size: cover;
            background-position: center;
            filter: brightness(0.4) saturate(1.5);
            z-index: -1;
            animation: parallax-bg 30s infinite alternate linear;
        }

        .hero-content {
            z-index: 1;
            animation: fadeIn 2s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes parallax-bg {
            0% { background-position: center top; }
            100% { background-position: center bottom; }
        }

        .btn {
            background-color: var(--primary-color);
            color: var(--background-color);
            padding: 15px 30px;
            border: none;
            font-family: 'Roboto Mono', monospace;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .btn:hover {
            background-color: var(--secondary-color);
            color: var(--text-color);
        }

        .about .container, .products .container, .prices .container, .gallery .container, .feedback .container, .faq .container {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-image {
            width: 100%;
            border: 2px solid var(--primary-color);
            animation: pulse 4s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 rgba(0, 255, 194, 0.4); }
            50% { transform: scale(1.02); box-shadow: 0 0 20px rgba(0, 255, 194, 0.8); }
            100% { transform: scale(1); box-shadow: 0 0 0 rgba(0, 255, 194, 0.4); }
        }
        
        .product-card {
            background-color: var(--card-bg-color);
            padding: 30px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .price-card {
            background-color: var(--card-bg-color);
            padding: 40px;
            border: 1px solid var(--primary-color);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 255, 194, 0.1), rgba(140, 82, 255, 0.1));
            z-index: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .price-card:hover::before {
            opacity: 1;
        }

        .price-card h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .price-card .price {
            font-size: 3rem;
            color: var(--secondary-color);
            font-weight: 700;
            position: relative;
            z-index: 1;
        }
        
        .price-card ul {
            list-style: none;
            margin: 20px 0;
            text-align: left;
            position: relative;
            z-index: 1;
        }

        .price-card li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .price-card li::before {
            content: '>';
            color: var(--primary-color);
            font-weight: 700;
            margin-right: 10px;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border: 2px solid var(--border-color);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            border-color: var(--primary-color);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }
        
        .feedback-slider {
            position: relative;
            width: 100%;
            max-width: 800px;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            padding: 40px;
            background-color: var(--card-bg-color);
            border: 1px solid var(--border-color);
            text-align: center;
        }
        
        .feedback-card blockquote {
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .feedback-nav {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .feedback-nav button {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--border-color);
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .feedback-nav button.active {
            background-color: var(--primary-color);
        }

        .faq-item {
            width: 100%;
            max-width: 800px;
            background-color: var(--card-bg-color);
            padding: 20px;
            border: 1px solid var(--border-color);
            margin-bottom: 10px;
            cursor: pointer;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding-top: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-top: 15px;
        }
        
        .faq-item.active .faq-question span {
            transform: rotate(45deg);
        }

        .contact-form {
            width: 100%;
            max-width: 600px;
            background-color: var(--form-bg-color);
            padding: 40px;
            border: 1px solid var(--primary-color);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-form label {
            display: block;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .contact-form input {
            width: 100%;
            padding: 10px;
            background-color: var(--background-color);
            border: 1px solid var(--border-color);
            color: var(--text-color);
            font-family: 'Roboto Mono', monospace;
        }
        
        .contact-form input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--card-bg-color);
            padding: 30px;
            border: 2px solid var(--primary-color);
            box-shadow: 0 0 20px rgba(0, 255, 194, 0.5);
            display: none;
            flex-direction: column;
            gap: 20px;
            text-align: center;
            z-index: 2000;
        }
        
        .popup.show {
            display: flex;
        }

        footer {
            background-color: var(--card-bg-color);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            font-size: 1.8rem;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            color: var(--text-color);
        }

        .contact-info {
            text-align: right;
            font-size: 0.9rem;
        }
        
        .disclaimer {
            background-color: var(--background-color);
            padding: 20px 0;
            text-align: center;
            font-size: 0.8rem;
            color: #999;
            border-top: 1px solid var(--border-color);
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background-color: var(--form-bg-color);
            border: 1px solid var(--primary-color);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1500;
        }

        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
        }

        .cookie-banner button {
            background-color: var(--primary-color);
            color: var(--background-color);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-family: 'Roboto Mono', monospace;
            font-weight: 700;
        }
        
        .cookie-banner button:hover {
            background-color: var(--secondary-color);
            color: var(--text-color);
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background-color: var(--background-color);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: left 0.5s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .hamburger {
                display: flex;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .prices-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .contact-info {
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

