:root {
            --neon-blue: #0ff0fc;
            --neon-purple: #8a2be2;
            --dark-bg: #0a0a12;
            --medium-bg: #121225;
            --light-text: #f0f0f5;
            --accent: #ff44cc;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;}
        
        main {
            max-width: 1000px;
            margin: 0 auto;
            background-color: var(--medium-bg);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(10, 240, 252, 0.2);
            border: 1px solid var(--neon-blue);
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--neon-blue);
        }
        
        h3 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.5rem;
            color: var(--accent);
        }
        
        p, ul, ol {
            margin-bottom: 1rem;
        }
        
        ul, ol {
            padding-left: 2rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #999;
            margin-bottom: 2rem;
        }
        
        @media screen and (max-width: 768px) {
            body {}
            
            main {
                padding: 1.5rem;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
:root {
            --neon-blue: #0ff0fc;
            --neon-purple: #8a2be2;
            --dark-bg: #0a0a12;
            --medium-bg: #121225;
            --light-text: #f0f0f5;
            --accent: #ff44cc;
            --secondary: #4deeea;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;}
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 18, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--neon-blue);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--neon-blue);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light-text);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(10, 10, 18, 0.8), rgba(10, 10, 18, 0.9)), url('https://images.unsplash.com/photo-1743834147172-37c12011b321?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            text-align: center;
            padding: 0 1rem;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(10, 240, 252, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(10, 240, 252, 0.5);
        }
        
        /* Section Styles */
        section {
            padding: 5rem 2rem;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--neon-blue);
        }
        
        /* About Section */
        .about {
            background-color: var(--medium-bg);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(10, 240, 252, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image img:hover {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .product-card {
            background: linear-gradient(145deg, #131327, #0e0e1c);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 0 15px rgba(10, 240, 252, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(10, 240, 252, 0.1);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 25px rgba(10, 240, 252, 0.4);
        }
        
        .product-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--neon-purple);
        }
        
        /* Prices Section */
        .prices {
            background-color: var(--medium-bg);
        }
        
        .pricing-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        
        .pricing-card {
            background: linear-gradient(145deg, #131327, #0e0e1c);
            border-radius: 10px;
            padding: 2rem;
            width: 300px;
            text-align: center;
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
            border: 1px solid rgba(138, 43, 226, 0.1);
            transition: transform 0.3s;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 1rem 0;
            color: var(--neon-blue);
        }
        
        .pricing-features {
            list-style: none;
            margin: 1.5rem 0;
        }
        
        .pricing-features li {
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .pricing-features li:before {
            content: "✓";
            color: var(--neon-blue);
            position: absolute;
            left: 0;
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            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 {
            background-color: var(--medium-bg);
            position: relative;
        }
        
        .feedback-slider {
            overflow: hidden;
            position: relative;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 0 1rem;
        }
        
        .feedback-card {
            background: linear-gradient(145deg, #131327, #0e0e1c);
            border-radius: 10px;
            padding: 2rem;
            margin: 0 auto;
            max-width: 800px;
            box-shadow: 0 0 15px rgba(255, 68, 204, 0.2);
            border: 1px solid rgba(255, 68, 204, 0.1);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 2px solid var(--accent);
        }
        
        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 1rem;
        }
        
        .slider-btn {
            background: var(--neon-purple);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        .slider-btn:hover {
            background: var(--neon-blue);
        }
        
        /* FAQ Section */
        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(10, 240, 252, 0.2);
            padding-bottom: 1.5rem;
        }
        
        .faq-question {
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            margin-top: 1rem;
            color: #ccc;
            display: none;
        }
        
        .faq-active .faq-answer {
            display: block;
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--medium-bg);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(10, 10, 18, 0.5);
            border: 1px solid var(--neon-blue);
            border-radius: 5px;
            color: var(--light-text);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 10, 18, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .popup-content {
            background: linear-gradient(145deg, #131327, #0e0e1c);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 0 30px rgba(10, 240, 252, 0.5);
            border: 1px solid var(--neon-blue);
        }
        
        .popup-visible {
            visibility: visible;
            opacity: 1;
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 2rem;
            background-color: var(--dark-bg);
            font-size: 0.9rem;
            color: #999;
            text-align: center;
            border-top: 1px solid rgba(10, 240, 252, 0.2);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--medium-bg);
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1500;
            transform: translateY(100%);
            transition: transform 0.5s;
            border-top: 1px solid var(--neon-purple);
        }
        
        .cookie-banner-visible {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin-right: 1rem;
            flex: 1;
            min-width: 250px;
        }
        
        .cookie-banner button {
            background: var(--neon-purple);
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        .cookie-banner button:hover {
            background: var(--neon-blue);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-bg);
            padding: 3rem 2rem;
            border-top: 1px solid rgba(10, 240, 252, 0.2);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--neon-blue);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-blue);
        }
        
        .contact-info {
            color: #ccc;
        }
        
        .contact-info p {
            margin-bottom: 0.8rem;
        }
        
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media screen and (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 70%;
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
                z-index: 999;
                border-left: 1px solid var(--neon-blue);
            }
            
            .nav-active {
                transform: translateX(0%);
            }
            
            .nav-links li {
                margin: 1.5rem 0;
            }
            
            .burger {
                display: block;
                z-index: 1000;
            }
            
            .burger.toggle .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.toggle .line2 {
                opacity: 0;
            }
            
            .burger.toggle .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            section {
                padding: 3rem 1rem;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

