:root {
            --neon-blue: #0ff0fc;
            --neon-pink: #ff2a6d;
            --neon-purple: #8a2be2;
            --dark-bg: #0a0a12;
            --darker-bg: #050508;
            --text-color: #e0e0e0;
        }
        
        * {
            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(--text-color);
            line-height: 1.6;}
        
        main {
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(5, 5, 8, 0.7);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid rgba(10, 240, 252, 0.3);
        }
        
        h1, h2, h3 {
            color: var(--neon-blue);
            margin-bottom: 1rem;
            margin-top: 2rem;
        }
        
        h1 {
            font-size: 2.5rem;
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--neon-pink);
            margin-bottom: 2rem;
        }
        
        h2 {
            font-size: 1.8rem;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(10, 240, 252, 0.3);
        }
        
        h3 {
            font-size: 1.4rem;
            color: var(--neon-pink);
        }
        
        p, ul, ol {
            margin-bottom: 1.5rem;
        }
        
        ul, ol {
            padding-left: 2rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        a {
            color: var(--neon-blue);
            text-decoration: none;
        }
        
        a:hover {
            color: var(--neon-pink);
        }
        
        .last-updated {
            text-align: right;
            font-style: italic;
            margin-bottom: 2rem;
            color: #999;
        }
        
        @media (max-width: 768px) {
            main {
                padding: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }
:root {
            --neon-blue: #0ff0fc;
            --neon-pink: #ff2a6d;
            --neon-purple: #8a2be2;
            --dark-bg: #0a0a12;
            --darker-bg: #050508;
            --text-color: #e0e0e0;
            --accent-color: #fffc00;
        }
        
        * {
            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(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;}
        
        h1, h2, h3, h4 {
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        h1 {
            font-size: 3.5rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
        }
        
        h2 {
            font-size: 2.5rem;
            color: var(--neon-blue);
            position: relative;
            display: inline-block;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-blue), transparent);
        }
        
        h3 {
            font-size: 1.8rem;
            color: var(--neon-pink);
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        a {
            color: var(--neon-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(10, 240, 252, 0.5);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(10, 240, 252, 0.8);
        }
        
        .btn-secondary {
            background: transparent;
            border: 2px solid var(--neon-pink);
            color: var(--neon-pink);
            box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
        }
        
        .btn-secondary:hover {
            background: var(--neon-pink);
            color: white;
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.8);
        }
        
        section {
            padding: 80px 0;
            position: relative;
        }
        
        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1660927604748-9b039cb31fc1?q=80&w=1268&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover fixed;
            opacity: 0.05;
            z-index: -1;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(5, 5, 8, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(10, 240, 252, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--neon-blue);
            text-transform: uppercase;
            letter-spacing: 3px;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--neon-pink);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-blue);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--neon-blue);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            background: url('https://images.unsplash.com/photo-1554224155-1696413565d3?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover fixed;
            opacity: 0.1;
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 1;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }
        
        .hero-btns {
            display: flex;
            gap: 20px;
            margin-top: 2rem;
        }
        
        /* About Section */
        .about {
            background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(10, 240, 252, 0.3);
            transition: transform 0.5s ease;
        }
        
        .about-img:hover {
            transform: scale(1.03);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background: rgba(5, 5, 8, 0.7);
            border: 1px solid rgba(10, 240, 252, 0.2);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(10, 240, 252, 0.2);
        }
        
        .product-card h3 {
            margin-bottom: 15px;
            color: var(--neon-blue);
        }
        
        .product-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--neon-pink);
        }
        
        /* Prices Section */
        .pricing-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background: rgba(5, 5, 8, 0.7);
            border: 1px solid rgba(138, 43, 226, 0.3);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pricing-card.featured {
            border: 1px solid var(--neon-pink);
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.3);
            z-index: 1;
        }
        
        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--neon-blue);
            margin-bottom: 20px;
        }
        
        .price span {
            font-size: 1rem;
            color: var(--text-color);
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        /* Feedback Section */
        .feedback-slider {
            position: relative;
            margin-top: 50px;
            overflow: hidden;
        }
        
        .feedback-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-slide {
            min-width: 100%;
            padding: 0 15px;
        }
        
        .feedback-card {
            background: rgba(5, 5, 8, 0.7);
            border: 1px solid rgba(255, 42, 109, 0.3);
            border-radius: 10px;
            padding: 30px;
            position: relative;
        }
        
        .feedback-card::before {
            content: '"';
            font-size: 5rem;
            color: var(--neon-pink);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid var(--neon-blue);
        }
        
        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-details h4 {
            color: var(--neon-blue);
            margin-bottom: 5px;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(10, 240, 252, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: var(--neon-blue);
            transform: scale(1.2);
        }
        
        /* FAQ Section */
        .faq-container {
            margin-top: 50px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(10, 240, 252, 0.2);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background: rgba(5, 5, 8, 0.5);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: rgba(10, 240, 252, 0.1);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--neon-blue);
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Contact Section */
        .contact-form {
            background: rgba(5, 5, 8, 0.7);
            border-radius: 10px;
            padding: 40px;
            margin-top: 50px;
            border: 1px solid rgba(138, 43, 226, 0.3);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(10, 10, 18, 0.7);
            border: 1px solid rgba(10, 240, 252, 0.3);
            border-radius: 4px;
            color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 10px rgba(10, 240, 252, 0.5);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Disclaimer */
        .disclaimer {
            background: var(--darker-bg);
            padding: 30px 0;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 42, 109, 0.3);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(5, 5, 8, 0.95);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--neon-blue);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin-bottom: 0;
            margin-right: 20px;
        }
        
        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(10, 240, 252, 0.3);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            display: inline-block;
            transition: transform 0.3s ease;
        }
        
        .footer-links a:hover {
            transform: translateX(5px);
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            color: var(--neon-pink);
            margin-right: 10px;
            min-width: 20px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: var(--darker-bg);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 1px solid var(--neon-blue);
            box-shadow: 0 0 30px rgba(10, 240, 252, 0.5);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        
        .modal-overlay.show .modal-content {
            transform: scale(1);
        }
        
        .modal-content h3 {
            color: var(--neon-blue);
            margin-bottom: 20px;
        }
        
        .modal-content p {
            margin-bottom: 30px;
        }
        
        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        
        @media screen and (max-width: 768px) {
            body {padding-top: 70px;}
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                height: calc(100vh - 70px);
                width: 70%;
                background: var(--darker-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                border-left: 1px solid var(--neon-blue);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
        }
        
        @media screen and (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .contact-form {
                padding: 20px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-banner p {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeIn 1s ease forwards;
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }
        
        /* Parallax effect */
        .parallax {
            background-attachment: fixed;
        }

