/* Cyberpunk style with a vibrant color palette */
        :root {
            --primary-color: #00FFC2;
            --secondary-color: #FF00FF;
            --background-color: #1a1a2e;
            --text-color: #ffffff;
            --accent-color: #ff5733;
            --card-bg: #282a3d;
            --border-color: #4b4d66;
            --button-hover: #00cc99;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Courier New', Courier, monospace;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(26, 26, 46, 0.9);
            padding: 1rem 2rem;
            border-bottom: 2px solid var(--secondary-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 2px;
            background-color: var(--primary-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a:hover::after {
            transform: scaleX(1);
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 4px;
            transition: all 0.3s ease;
        }
        
        main {
            padding-top: 80px;
        }
        
        section {
            padding: 4rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero {
            position: relative;
            background-size: cover;
            background-position: center;
            text-align: center;
            color: var(--text-color);
            min-height: 100vh;
            padding-top: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            animation: fadeIn 2s ease-in-out;
        }

        .hero-content {
            z-index: 1;
            animation: slideInUp 1s ease-in-out;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px var(--secondary-color);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            max-width: 800px;
        }

        .btn {
            background-color: var(--primary-color);
            color: var(--background-color);
            padding: 0.8rem 2rem;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: var(--button-hover);
        }

        h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-color);
            text-shadow: 1px 1px var(--secondary-color);
        }

        .about-content, .product-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }
        
        .about-text, .product-text {
            flex: 1;
        }

        .about-image, .product-image {
            flex: 1;
            text-align: center;
        }
        
        .about-image img, .product-image img {
            max-width: 100%;
            height: auto;
            border: 3px solid var(--secondary-color);
            animation: pulse 2s infinite;
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .price-card {
            background-color: var(--card-bg);
            border: 2px solid var(--primary-color);
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .price-card:hover {
            transform: translateY(-10px);
        }

        .price-card h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        .price-card .price {
            font-size: 3rem;
            font-weight: bold;
            margin: 1rem 0;
            color: var(--secondary-color);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }

        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-slide {
            min-width: 100%;
            padding: 2rem;
            background-color: var(--card-bg);
            border: 2px solid var(--secondary-color);
            text-align: center;
        }

        .feedback-slide p {
            font-style: italic;
        }

        .feedback-slide .author {
            margin-top: 1rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .faq-question {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
            
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        .form-group input {
            width: 100%;
            padding: 0.8rem;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            color: var(--text-color);
            font-family: 'Courier New', Courier, monospace;
        }

        .disclaimer {
            padding: 2rem;
            text-align: center;
            background-color: #111;
            border-top: 1px solid var(--secondary-color);
            font-size: 0.8rem;
            color: #ccc;
        }

        footer {
            background-color: #111;
            color: #ccc;
            padding: 2rem;
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid var(--secondary-color);
        }

        footer nav a {
            color: #ccc;
            text-decoration: none;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }
        
        footer nav a:hover {
            color: var(--primary-color);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 1rem;
            text-align: center;
            z-index: 2000;
            display: none;
            backdrop-filter: blur(5px);
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
        }

        .cookie-banner button {
            background: var(--primary-color);
            color: var(--background-color);
            border: none;
            padding: 0.5rem 1rem;
            margin-left: 1rem;
            cursor: pointer;
        }
        
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--card-bg);
            border: 2px solid var(--primary-color);
            padding: 2rem;
            text-align: center;
            z-index: 3000;
            display: none;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--background-color);
                border-top: 2px solid var(--secondary-color);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                margin: 0;
                text-align: center;
                padding: 1rem 0;
                border-bottom: 1px solid var(--border-color);
            }
            
            .burger-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .about-content, .product-content {
                flex-direction: column;
            }
            
            .prices-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 255, 194, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(0, 255, 194, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 255, 194, 0); }
        }
        
        .hidden { opacity: 0; transform: translateY(20px); transition: opacity 1s ease, transform 1s ease; }
        .visible { opacity: 1; transform: translateY(0); }

