:root {
            --neon-green: #00ff9d;
            --deep-purple: #7b2cbf;
            --dark-bg: #0a0a0a;
            --text-light: #f8f9fa;
            --accent-blue: #4361ee;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;}
        
        main {
            max-width: 1000px;
            margin: 0 auto;
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            padding: 3rem;
            border-radius: 8px;
            border: 1px solid var(--neon-green);
        }
        
        h1 {
            color: var(--neon-green);
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2.5rem;
        }
        
        h2 {
            color: var(--accent-blue);
            margin: 1.5rem 0 1rem;
            font-size: 1.8rem;
        }
        
        p, li {
            margin-bottom: 1rem;
        }
        
        ul {
            padding-left: 1.5rem;
        }
        
        .last-updated {
            text-align: center;
            font-style: italic;
            margin-bottom: 2rem;
            color: #aaa;
        }
        
        @media screen and (max-width: 768px) {
            body {}
            
            main {
                padding: 1.5rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }
:root {
            --neon-green: #00ff9d;
            --deep-purple: #7b2cbf;
            --dark-bg: #0a0a0a;
            --text-light: #f8f9fa;
            --accent-blue: #4361ee;
            --section-padding: 5rem 1.5rem;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;}
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-green);
            z-index: 1000;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--neon-green);
            text-shadow: 0 0 5px var(--neon-green);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li a {
            color: var(--text-light);
            text-decoration: none;
            margin-left: 1.5rem;
            transition: color 0.3s;
            font-weight: bold;
        }
        
        .nav-links li a:hover {
            color: var(--neon-green);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0 1.5rem;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1575889774394-353117afffd7?q=80&w=1151&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
        }
        
        .hero-content {
            text-align: center;
            z-index: 1;
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--neon-green);
            text-shadow: 0 0 10px var(--neon-green);
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--deep-purple);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: all 0.3s;
            border: 1px solid var(--neon-green);
        }
        
        .btn:hover {
            background-color: var(--neon-green);
            color: var(--dark-bg);
            box-shadow: 0 0 15px var(--neon-green);
        }
        
        /* Sections Common */
        section {
            padding: var(--section-padding);
            scroll-margin-top: 80px;
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--neon-green);
            text-align: center;
        }
        
        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--accent-blue);
        }
        
        /* About Section */
        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        
        .about-text {
            padding-right: 1rem;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 8px;
            border: 2px solid var(--neon-green);
            box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
        }
        
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .product-card {
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--deep-purple);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(123, 44, 191, 0.5);
        }
        
        /* Prices Section */
        .pricing-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pricing-card {
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--neon-green);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .pricing-card:hover {
            transform: scale(1.03);
        }
        
        .price {
            font-size: 2.5rem;
            color: var(--neon-green);
            margin: 1rem 0;
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .feedback-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--deep-purple);
        }
        
        .feedback-slide.active {
            opacity: 1;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 1.5rem;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 2px solid var(--neon-green);
        }
        
        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #444;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dot.active {
            background-color: var(--neon-green);
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            border: 1px solid var(--deep-purple);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1.5rem;
            background-color: #1a1a1a;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: #0f0f0f;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 1.5rem;
        }
        
        /* Contact Section */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--neon-green);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: #0a0a0a;
            border: 1px solid var(--deep-purple);
            border-radius: 4px;
            color: var(--text-light);
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 2rem 1.5rem;
            background-color: #1a1a1a;
            border-top: 1px solid var(--deep-purple);
            font-size: 0.9rem;
            text-align: center;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #1a1a1a;
            padding: 1.5rem;
            border-top: 2px solid var(--neon-green);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
        }
        
        .cookie-banner p {
            margin-right: 1rem;
        }
        
        .cookie-banner button {
            background-color: var(--deep-purple);
            color: var(--text-light);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            white-space: nowrap;
        }
        
        /* Footer */
        footer {
            background-color: #0f0f0f;
            padding: 3rem 1.5rem;
            border-top: 1px solid var(--deep-purple);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--neon-green);
            margin-bottom: 1rem;
        }
        
        .footer-links h4 {
            color: var(--neon-green);
            margin-bottom: 1rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-green);
        }
        
        .footer-contact address {
            font-style: normal;
        }
        
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            padding: 2rem;
            border-radius: 8px;
            border: 2px solid var(--neon-green);
            max-width: 500px;
            width: 90%;
            text-align: center;
        }
        
        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 100%;
                background-color: rgba(10, 10, 10, 0.95);
                backdrop-filter: blur(10px);
                height: 100vh;
                width: 70%;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
                border-left: 1px solid var(--neon-green);
            }
            
            .nav-links.active {
                transform: translateX(0%);
            }
            
            .nav-links li {
                margin: 1.5rem 0;
            }
            
            .nav-links li a {
                margin-left: 0;
                font-size: 1.2rem;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-text {
                padding-right: 0;
                margin-bottom: 2rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            h3 {
                font-size: 1.5rem;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-banner button {
                margin-top: 1rem;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Parallax Effect */
        .parallax {
            background-attachment: fixed;
        }

