:root {
            --primary-bg: #121212;
            --secondary-bg: #1e1e1e;
            --accent-color: #00ffff;
            --text-color: #e0e0e0;
            --secondary-text-color: #a0a0a0;
            --border-color: #333;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto Mono', monospace;
            background-color: var(--primary-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        a:hover {
            color: #00dcdc;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(18, 18, 18, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-size: 1.8rem;
            font-weight: bold;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            font-size: 1rem;
            font-weight: 500;
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
        }
        
        .burger-menu span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .burger-menu {
                display: flex;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100%;
                background: var(--secondary-bg);
                padding-top: 5rem;
                transition: right 0.4s ease;
                border-left: 1px solid var(--border-color);
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 1.5rem 0;
            }
        }
        
        /* Main content */
        main {
            padding-top: 80px; /* Offset for fixed header */
        }

        section {
            padding: 80px 0;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        section:nth-child(even) {
            background-color: var(--secondary-bg);
        }
        
        h1, h2, h3 {
            font-family: 'Poppins', sans-serif;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        h1 {
            font-size: 3rem;
            letter-spacing: 3px;
            color: var(--accent-color);
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
        }

        h3 {
            font-size: 1.5rem;
            color: var(--accent-color);
        }
        
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../img/01.webp) center/cover no-repeat fixed;
            color: #fff;
        }
        
        .hero-content {
            z-index: 2;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 20px auto 40px;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--primary-bg);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            background-color: #00dcdc;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .about-item {
            background-color: var(--primary-bg);
            border: 1px solid var(--border-color);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
        }

        .product-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 60px;
        }
        
        .product-item:nth-child(even) .product-image {
            order: 2;
        }

        .product-image {
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            animation: fadeIn 1s ease-in-out;
        }

        .product-image img {
            width: 100%;
            height: auto;
        }

        .product-text {
            animation: fadeIn 1s ease-in-out;
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .price-card {
            background-color: var(--secondary-bg);
            border: 1px solid var(--border-color);
            padding: 40px;
            text-align: center;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
        }

        .price-card h3 {
            margin-bottom: 10px;
        }
        
        .price-card .price {
            font-size: 2.5rem;
            color: var(--accent-color);
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .price-card ul li {
            padding: 5px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            border-radius: 5px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .review-card {
            flex: 0 0 100%;
            padding: 40px;
            background-color: var(--secondary-bg);
            border-radius: 10px;
            text-align: center;
            margin: 0 20px;
            border: 1px solid var(--border-color);
        }
        
        .review-card p {
            font-style: italic;
        }

        .review-card .author {
            margin-top: 20px;
            font-weight: bold;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: var(--secondary-text-color);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--accent-color);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 20px 0;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding: 0 20px;
        }

        .faq-answer.active {
            max-height: 200px;
            padding: 10px 20px 20px;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            content: '-';
            transform: rotate(180deg);
        }

        #contact-form {
            background-color: var(--secondary-bg);
            padding: 40px;
            border-radius: 10px;
            max-width: 600px;
            margin: 0 auto;
            border: 1px solid var(--border-color);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px;
            background-color: var(--primary-bg);
            border: 1px solid var(--border-color);
            color: var(--text-color);
            border-radius: 5px;
            font-family: 'Roboto Mono', monospace;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .submit-button {
            width: 100%;
            background-color: var(--accent-color);
            color: var(--primary-bg);
            padding: 15px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .submit-button:hover {
            background-color: #00dcdc;
        }

        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .popup.active {
            display: flex;
            opacity: 1;
        }

        .popup-content {
            background-color: var(--secondary-bg);
            padding: 50px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            border: 1px solid var(--accent-color);
        }

        .popup-content h3 {
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        /* Disclaimer */
        .disclaimer {
            background-color: var(--primary-bg);
            padding: 20px 0;
            text-align: center;
            font-size: 0.9rem;
            color: var(--secondary-text-color);
            border-top: 1px solid var(--border-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary-bg);
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .footer-links li {
            margin: 0 15px;
        }

        .footer-links li a {
            font-size: 1rem;
            color: var(--secondary-text-color);
        }

        .footer-links li a:hover {
            color: var(--accent-color);
        }
        
        .contact-info {
            font-size: 0.9rem;
            color: var(--secondary-text-color);
            margin-bottom: 20px;
        }
        
        .contact-info p {
            margin: 5px 0;
        }
        
        .contact-info span {
            font-weight: bold;
        }

        .copyright {
            font-size: 0.8rem;
            color: var(--secondary-text-color);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--secondary-bg);
            border-top: 1px solid var(--accent-color);
            padding: 20px;
            text-align: center;
            z-index: 1500;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin: 0;
        }
        
        .cookie-banner button {
            background-color: var(--accent-color);
            color: var(--primary-bg);
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        
        .cookie-banner button:hover {
            background-color: #00dcdc;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 992px) {
            .product-item {
                grid-template-columns: 1fr;
            }
            
            .product-item:nth-child(even) .product-image {
                order: 0;
            }
            
            .prices-grid {
                grid-template-columns: 1fr;
            }
        }

