@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');
        
        :root {
            --bg-color: #0d0d0d;
            --text-color: #f0f0f0;
            --primary-color: #00ff99;
            --secondary-color: #8a2be2;
            --accent-color: #ff69b4;
            --card-bg: #1a1a1a;
            --border-color: #333;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto Mono', monospace;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            color: var(--primary-color);
            text-transform: uppercase;
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }

        p, li {
            color: var(--text-color);
        }
        
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        a:hover {
            color: var(--accent-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background-color: rgba(13, 13, 13, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--primary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu .bar {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        main {
            padding-top: 60px;
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(13,13,13,0.8), rgba(13,13,13,0.8)), url('../img/05.webp') no-repeat center center/cover;
            background-attachment: fixed;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 255, 153, 0.1);
            animation: pulse 4s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.2; }
            50% { transform: scale(1.05); opacity: 0.4; }
            100% { transform: scale(1); opacity: 0.2; }
        }

        .hero-content {
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-color);
        }

        .btn {
            background-color: var(--primary-color);
            color: var(--bg-color);
            padding: 15px 30px;
            border-radius: 5px;
            font-weight: 700;
            text-transform: uppercase;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 0 15px var(--primary-color);
        }
        
        .btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 0 20px var(--accent-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            border-bottom: 2px solid var(--primary-color);
            display: inline-block;
            padding-bottom: 10px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-content, .products-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .about-text, .products-text {
            flex: 1;
            min-width: 300px;
        }

        .about-image, .products-image {
            flex: 1;
            min-width: 300px;
        }

        .about-image img, .products-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 0 25px var(--secondary-color);
            transition: transform 0.5s ease;
        }

        .about-image img:hover, .products-image img:hover {
            transform: scale(1.03);
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .price-card {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 255, 153, 0.2);
        }

        .price-card h3 {
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .price-card .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .price-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        
        .price-card ul li::before {
            content: '>';
            color: var(--primary-color);
            position: absolute;
            left: 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: opacity 0.5s ease;
        }

        .gallery-item img:hover {
            opacity: 0.8;
        }

        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-slide {
            min-width: 100%;
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .feedback-slide p {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .feedback-author {
            font-weight: 700;
            color: var(--primary-color);
        }

        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }

        .slider-nav button {
            background-color: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .slider-nav button:hover {
            background-color: var(--primary-color);
            color: var(--bg-color);
        }

        .faq-item {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            margin-bottom: 15px;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: var(--primary-color);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: #222;
        }

        .faq-answer p {
            padding: 20px 0;
        }

        .contact-form-wrapper {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 40px;
            border-radius: 10px;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form h3 {
            text-align: center;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 10px;
            background-color: #222;
            border: 1px solid var(--border-color);
            color: var(--text-color);
            border-radius: 5px;
        }

        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 5px var(--accent-color);
        }

        .submit-btn {
            display: block;
            width: 100%;
            text-align: center;
            cursor: pointer;
            border: none;
        }

        .disclaimer {
            text-align: center;
            padding: 20px;
            background-color: #1a1a1a;
            border-top: 1px solid var(--border-color);
            font-size: 0.9rem;
            color: #aaa;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #222;
            color: var(--text-color);
            padding: 20px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid var(--border-color);
            z-index: 1001;
            opacity: 0;
            transform: translateY(100px);
            animation: slideIn 0.8s forwards;
        }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-buttons .btn {
            padding: 8px 15px;
            font-size: 0.9rem;
        }

        footer {
            background-color: #1a1a1a;
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
        }
        
        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .footer-info, .footer-links {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-info p {
            margin-bottom: 10px;
        }
        
        .footer-links h3 {
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1002;
        }

        .popup-content {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-color);
            position: relative;
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 2rem;
            color: var(--primary-color);
            cursor: pointer;
        }

        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                background-color: rgba(13, 13, 13, 0.95);
                position: absolute;
                top: 65px;
                left: 0;
                border-top: 1px solid var(--border-color);
            }

            nav.active {
                display: flex;
            }

            nav ul {
                flex-direction: column;
                padding: 20px 0;
            }

            nav ul li {
                margin: 15px 0;
            }

            .burger-menu {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .about-content, .products-content {
                flex-direction: column;
            }
            
            .cookie-banner {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

