@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@400;700&display=swap');

        :root {
            --primary-color: #00ff00;
            --secondary-color: #0000ff;
            --accent-color: #ff00ff;
            --background-color: #0d0d1a;
            --text-color: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --border-color: rgba(0, 255, 255, 0.5);
            --form-bg: rgba(0, 0, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            background-color: var(--background-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Utility classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .text-center {
            text-align: center;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            text-transform: uppercase;
            color: var(--primary-color);
            margin-bottom: 40px;
            text-shadow: 0 0 10px var(--primary-color);
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(13, 13, 26, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            color: var(--primary-color);
            text-decoration: none;
            text-shadow: 0 0 5px var(--primary-color);
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-menu {
            list-style: none;
            display: flex;
        }

        .nav-menu li {
            margin-left: 20px;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--accent-color);
            text-shadow: 0 0 8px var(--accent-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu span {
            width: 30px;
            height: 3px;
            background-color: var(--primary-color);
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(13, 13, 26, 0.8), rgba(13, 13, 26, 0.8)), url('../img/05.webp') no-repeat center center/cover;
            animation: fadeIn 2s ease-in-out;
            text-align: center;
            overflow: hidden;
            border-bottom: 2px solid var(--border-color);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            text-shadow: 0 0 20px var(--primary-color);
            animation: neonPulse 1.5s infinite alternate;
        }

        .hero p {
            font-size: 1.5rem;
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.8);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            margin-top: 40px;
            background-color: var(--primary-color);
            color: var(--background-color);
            font-family: 'Orbitron', sans-serif;
            text-decoration: none;
            text-transform: uppercase;
            border-radius: 5px;
            box-shadow: 0 0 15px var(--primary-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            background-color: var(--accent-color);
            color: var(--text-color);
            box-shadow: 0 0 20px var(--accent-color);
            transform: translateY(-5px);
        }

        .cta-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
        }

        .cta-button:hover::after {
            left: 100%;
        }

        /* Sections */
        main section {
            padding: 80px 0;
            position: relative;
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        }

        main section:nth-of-type(even) {
            background-color: rgba(255, 255, 255, 0.03);
        }
        
        /* About Section */
        .about .container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
        }

        .about-image, .product-image {
            width: 50%;
            border: 2px solid var(--primary-color);
            box-shadow: 0 0 20px var(--primary-color);
            overflow: hidden;
            animation: glowBorder 2s infinite alternate;
        }
        
        .about-image img, .product-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image img:hover, .product-image img:hover {
            transform: scale(1.1);
        }

        .about-content, .product-content {
            width: 50%;
        }

        .about-content h2, .product-content h2 {
            font-family: 'Orbitron', sans-serif;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        /* Product Section */
        .products .container {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-direction: row-reverse;
        }

        /* Prices Section */
        .prices .container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .price-card {
            width: 300px;
            padding: 30px;
            background: var(--glass-bg);
            border: 2px solid var(--border-color);
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 25px var(--accent-color);
        }

        .price-card h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .price-card .price {
            font-size: 2.5rem;
            font-family: 'Orbitron', sans-serif;
            color: var(--accent-color);
            margin: 20px 0;
            text-shadow: 0 0 10px var(--accent-color);
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .price-card li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }

        .price-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        .price-card .cta-button {
            margin-top: 0;
        }

        /* Gallery Section */
        .gallery .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border: 2px solid var(--border-color);
            box-shadow: 0 0 10px var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px var(--accent-color);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Feedback Section */
        .feedback .container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .slider-container {
            width: 100%;
            max-width: 900px;
            overflow: hidden;
            position: relative;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .review {
            min-width: 100%;
            text-align: center;
            padding: 20px;
            background: var(--glass-bg);
            border: 2px solid var(--border-color);
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
        }

        .review p {
            font-style: italic;
            margin-bottom: 15px;
        }

        .review span {
            font-weight: bold;
            color: var(--primary-color);
            font-family: 'Orbitron', sans-serif;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
        }

        .slider-nav button {
            background: var(--glass-bg);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 10px 15px;
            cursor: pointer;
            font-size: 1.5rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .slider-nav button:hover {
            background: var(--primary-color);
            color: var(--background-color);
        }

        /* FAQ Section */
        .faq .container {
            max-width: 800px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 20px;
        }
        
        .faq-question {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--primary-color);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            content: '-';
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding-top: 0;
            margin-top: 10px;
        }

        .faq-answer.open {
            max-height: 200px; /* Adjust based on content */
            padding-top: 20px;
        }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--form-bg);
            padding: 40px;
            border-radius: 10px;
            border: 2px solid var(--primary-color);
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
        }

        .contact-form h2 {
            font-family: 'Orbitron', sans-serif;
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--accent-color);
            font-family: 'Orbitron', sans-serif;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-color);
            color: var(--text-color);
            font-size: 1rem;
            border-radius: 5px;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 8px var(--primary-color);
        }

        .form-submit-button {
            display: block;
            width: 100%;
            padding: 15px;
            background-color: var(--primary-color);
            color: var(--background-color);
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-submit-button:hover {
            background-color: var(--accent-color);
            box-shadow: 0 0 15px var(--accent-color);
        }
        
        /* Modal Popup */
        .modal {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: var(--form-bg);
            padding: 40px;
            border: 2px solid var(--primary-color);
            border-radius: 10px;
            text-align: center;
            position: relative;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 0 20px var(--primary-color);
        }

        .modal-content h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .modal-content p {
            font-size: 1.2rem;
        }

        /* Disclaimer Section */
        .disclaimer {
            padding: 40px 0;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid var(--border-color);
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .disclaimer p {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Footer */
        footer {
            background-color: #0d0d1a;
            color: var(--text-color);
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid var(--border-color);
        }

        footer .container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-links {
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            margin: 0 15px;
            font-family: 'Orbitron', sans-serif;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }

        .footer-info p {
            margin-bottom: 10px;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            color: var(--text-color);
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            border-top: 2px solid var(--primary-color);
            z-index: 1002;
        }
        
        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .cookie-banner button {
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: var(--background-color);
            border: none;
            cursor: pointer;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        
        .cookie-banner button:hover {
            background-color: var(--accent-color);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes neonPulse {
            from { text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--primary-color); }
            to { text-shadow: 0 0 5px var(--primary-color), 0 0 15px var(--primary-color), 0 0 25px var(--primary-color); }
        }

        @keyframes glowBorder {
            from { box-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color); }
            to { box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(13, 13, 26, 0.95);
                border-bottom: 2px solid var(--border-color);
                padding: 20px 0;
                text-align: center;
            }

            .feedback .container{
                display: flex;
                flex-direction: column;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                margin: 10px 0;
            }

            .burger-menu {
                display: flex;
            }
            
            .about .container, .products .container {
                flex-direction: column;
            }

            .about-image, .product-image, .about-content, .product-content {
                width: 100%;
            }

            .hero h1 {
                font-size: 2.5rem;
            }
        }

