:root {
            --neon-cyan: #00f3ff;
            --neon-pink: #ff00c8;
            --neon-green: #00ff9d;
            --dark-bg: #0a0a12;
            --darker-bg: #050508;
            --text-color: #ffffff;
            --accent-purple: #7b68ee;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;}
        
        main {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px;
            background-color: var(--darker-bg);
            border: 1px solid var(--neon-green);
            box-shadow: 0 0 30px rgba(0, 255, 157, 0.2);
        }
        
        h1 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.5rem;
            background: linear-gradient(45deg, var(--neon-green), var(--neon-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
        }
        
        h2 {
            margin: 25px 0 15px;
            color: var(--neon-pink);
            border-bottom: 1px solid var(--accent-purple);
            padding-bottom: 8px;
        }
        
        p, li {
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .last-updated {
            text-align: right;
            font-style: italic;
            color: var(--neon-cyan);
            margin-bottom: 30px;
        }
        
        @media screen and (max-width: 768px) {
            main {
                padding: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
:root {
            --neon-cyan: #00f3ff;
            --neon-pink: #ff00c8;
            --neon-green: #00ff9d;
            --dark-bg: #0a0a12;
            --darker-bg: #050508;
            --text-color: #ffffff;
            --accent-purple: #7b68ee;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;}
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 18, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-cyan);
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin: 0 15px;
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--neon-cyan);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 650px;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), var(--neon-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
            border: none;
            border-radius: 2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(0, 243, 255, 0.7);
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
            opacity: 0.2;
            z-index: 0;
        }
        
        /* Sections Common Styles */
        section {
            padding: 80px 5%;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: inline-block;
            padding-bottom: 10px;
            position: relative;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            left: 25%;
            bottom: 0;
            width: 50%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
        }
        
        /* About Section */
        .about {
            background-color: var(--darker-bg);
            position: relative;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: url('https://images.unsplash.com/photo-1729505305192-610539203144?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
            border: 2px solid var(--neon-cyan);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
            position: relative;
        }
        
        .about-image:before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid var(--neon-pink);
            z-index: -1;
            opacity: 0.7;
        }
        
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background: linear-gradient(145deg, var(--darker-bg), #0f0f1a);
            padding: 30px;
            border: 1px solid var(--accent-purple);
            border-radius: 2px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-card:before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            z-index: -1;
            background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(123, 104, 238, 0.3);
        }
        
        .product-card:hover:before {
            opacity: 1;
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--neon-green);
        }
        
        .product-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--neon-cyan);
        }
        
        /* Prices Section */
        .prices {
            background-color: var(--darker-bg);
        }
        
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
        }
        
        .pricing-table th, .pricing-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid var(--accent-purple);
        }
        
        .pricing-table th {
            background-color: rgba(123, 104, 238, 0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .pricing-table tr:nth-child(even) {
            background-color: rgba(10, 10, 18, 0.5);
        }
        
        .price {
            font-size: 1.8rem;
            color: var(--neon-green);
            font-weight: bold;
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 40px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--neon-cyan);
        }
        
        .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-slider {
            position: relative;
            max-width: 900px;
            margin: 50px auto;
            overflow: hidden;
        }
        
        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-slide {
            min-width: 100%;
            padding: 30px;
            background: linear-gradient(145deg, var(--darker-bg), #0f0f1a);
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 20px rgba(255, 0, 200, 0.2);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid var(--neon-cyan);
        }
        
        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-name {
            font-weight: bold;
            color: var(--neon-green);
        }
        
        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: var(--accent-purple);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--neon-cyan);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--darker-bg);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--accent-purple);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: rgba(123, 104, 238, 0.1);
            cursor: pointer;
            position: relative;
            font-weight: bold;
        }
        
        .faq-question:after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--neon-cyan);
        }
        
        .faq-question.active:after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-question.active + .faq-answer {
            max-height: 500px;
            padding: 20px;
        }
        
        /* Contact Section */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            color: var(--neon-cyan);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--accent-purple);
            color: var(--text-color);
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-cyan);
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Popup Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background-color: var(--darker-bg);
            padding: 40px;
            text-align: center;
            border: 2px solid var(--neon-green);
            max-width: 500px;
            width: 90%;
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
            color: var(--neon-pink);
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 20px 5%;
            background-color: var(--darker-bg);
            border-top: 1px solid var(--neon-pink);
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--darker-bg);
            padding: 15px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            border-top: 1px solid var(--neon-cyan);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 2;
            min-width: 300px;
            margin-right: 20px;
        }
        
        .cookie-banner .btn {
            flex: 1;
            min-width: 150px;
            text-align: center;
            margin: 10px 0;
        }
        
        /* Footer */
        footer {
            background-color: var(--darker-bg);
            padding: 60px 5% 30px;
            border-top: 1px solid var(--accent-purple);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--neon-cyan);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-green);
        }
        
        .contact-info {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .contact-info p {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(123, 104, 238, 0.3);
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        
        /* Responsive Styles */
        @media screen and (max-width: 768px) {
            body {padding-top: 70px;}
            
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                height: calc(100vh - 70px);
                background-color: var(--darker-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
                transition: right 0.5s ease;
                z-index: 999;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

