:root {
            --neon-blue: #00f3ff;
            --neon-pink: #ff00ff;
            --dark-bg: #0d0d0d;
            --dark-purple: #1a0033;
            --text-color: #ffffff;
            --accent-yellow: #ffee00;
        }
        
        * {
            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;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.05) 0%, transparent 20%);
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 13, 13, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-blue);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, var(--neon-blue), 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-left: 2rem;
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--neon-blue);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-blue);
            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-blue);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 5rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hero {
            background: linear-gradient(to bottom, var(--dark-purple), var(--dark-bg));
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, transparent 48%, rgba(0, 243, 255, 0.1) 50%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(255, 0, 255, 0.1) 50%, transparent 52%);
            background-size: 50px 50px;
            opacity: 0.3;
            pointer-events: none;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #cccccc;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            color: var(--dark-bg);
            text-decoration: none;
            font-weight: bold;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            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.8);
        }
        
        .about {
            background-color: var(--dark-bg);
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--neon-blue), var(--neon-pink));
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding: 1rem;
        }
        
        .about-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--neon-blue);
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
            transition: transform 0.3s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.02);
        }
        
        .products {
            background: linear-gradient(to bottom, var(--dark-bg), var(--dark-purple));
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .product-card {
            background: rgba(26, 0, 51, 0.5);
            border: 1px solid var(--neon-pink);
            border-radius: 10px;
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 40%, rgba(255, 0, 255, 0.1) 50%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
        }
        
        .product-card:hover::before {
            opacity: 1;
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--neon-pink);
        }
        
        .product-card p {
            color: #cccccc;
        }
        
        .prices {
            background-color: var(--dark-bg);
        }
        
        .pricing-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .pricing-plan {
            background: rgba(26, 0, 51, 0.7);
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            padding: 2rem;
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .pricing-plan:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
        }
        
        .plan-name {
            font-size: 1.5rem;
            color: var(--neon-blue);
            margin-bottom: 1rem;
        }
        
        .plan-price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .plan-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .gallery {
            background: linear-gradient(to bottom, var(--dark-bg), var(--dark-purple));
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 1rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .feedback {
            background-color: var(--dark-bg);
        }
        
        .slider-container {
            position: relative;
            width: 100%;
            margin: 2rem auto;
            overflow: hidden;
            border: 1px solid var(--neon-pink);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 2rem;
            background: rgba(26, 0, 51, 0.7);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .client-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 2px solid var(--neon-blue);
        }
        
        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-details h4 {
            color: var(--neon-blue);
            margin-bottom: 0.2rem;
        }
        
        .client-details p {
            color: #cccccc;
            font-size: 0.9rem;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .slider-dot.active {
            background: var(--neon-pink);
        }
        
        .faq {
            background: linear-gradient(to bottom, var(--dark-bg), var(--dark-purple));
        }
        
        .accordion {
            max-width: 800px;
            margin: 2rem auto;
        }
        
        .accordion-item {
            margin-bottom: 1rem;
            border: 1px solid rgba(0, 243, 255, 0.3);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .accordion-header {
            background: rgba(26, 0, 51, 0.5);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }
        
        .accordion-header:hover {
            background: rgba(26, 0, 51, 0.7);
        }
        
        .accordion-header h3 {
            font-size: 1.1rem;
            color: var(--neon-blue);
        }
        
        .accordion-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: rgba(13, 13, 13, 0.5);
        }
        
        .accordion-content.active {
            padding: 1rem;
            max-height: 300px;
        }
        
        .contact {
            background-color: var(--dark-bg);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(26, 0, 51, 0.7);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--neon-blue);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--neon-blue);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background: rgba(13, 13, 13, 0.7);
            border: 1px solid var(--neon-pink);
            border-radius: 5px;
            color: var(--text-color);
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .modal {
            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: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: var(--dark-purple);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            border: 2px solid var(--neon-blue);
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
            max-width: 500px;
            width: 90%;
        }
        
        .modal h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--neon-blue);
        }
        
        .modal p {
            margin-bottom: 2rem;
            color: #cccccc;
        }
        
        .close-modal {
            background: var(--neon-blue);
            color: var(--dark-bg);
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        
        .close-modal:hover {
            background: var(--neon-pink);
        }
        
        .disclaimer {
            background: var(--dark-purple);
            padding: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #cccccc;
            border-top: 1px solid var(--neon-pink);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--dark-purple);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 2px solid var(--neon-blue);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 2rem;
            color: #cccccc;
        }
        
        .cookie-btn {
            background: var(--neon-blue);
            color: var(--dark-bg);
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        
        .cookie-btn:hover {
            background: var(--neon-pink);
        }
        
        footer {
            background: var(--dark-purple);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid var(--neon-pink);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-blue);
        }
        
        .contact-info {
            margin-bottom: 2rem;
        }
        
        .contact-info p {
            margin-bottom: 0.5rem;
            color: #cccccc;
        }
        
        .copyright {
            font-size: 0.9rem;
            color: #888;
        }
        
        @media screen and (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 100%;
                background: rgba(13, 13, 13, 0.95);
                backdrop-filter: blur(10px);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
                border-top: 1px solid var(--neon-blue);
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(45deg) translate(5px, 8px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -8px);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

