:root {
            --neon-pink: #ff00ff;
            --neon-blue: #00ffff;
            --neon-purple: #bd00ff;
            --dark-bg: #000;
            --text-color: #fff;
            --accent-yellow: #ffff00;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-color);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            padding: 0 20px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid var(--neon-pink);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--neon-blue);
            text-decoration: none;
            text-shadow: 0 0 10px var(--neon-blue);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--neon-pink);
        }
        
        .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 {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,0,255,0.1), rgba(0,255,255,0.1));
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-color);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
            color: var(--dark-bg);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px var(--neon-pink);
        }
        
        /* Sections Common Styles */
        section {
            padding: 80px 0;
        }
        
        section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--neon-blue);
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        }
        
        /* About Section */
        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        
        .about-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .product-card {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--neon-purple);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px var(--neon-purple);
        }
        
        .product-card h3 {
            color: var(--neon-pink);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        /* Prices Section */
        .pricing-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pricing-plan {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            flex: 1;
            min-width: 250px;
            max-width: 350px;
        }
        
        .pricing-plan h3 {
            color: var(--neon-blue);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .price {
            font-size: 2.5rem;
            color: var(--neon-pink);
            margin: 20px 0;
        }
        
        .pricing-features {
            list-style: none;
            margin: 20px 0;
            text-align: left;
        }
        
        .pricing-features li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .pricing-features li::before {
            content: '✓';
            color: var(--neon-blue);
            position: absolute;
            left: 0;
        }
        
        /* Gallery Section */
        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            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: 1000px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-slide {
            min-width: 100%;
            padding: 30px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--neon-pink);
            border-radius: 10px;
            margin: 0 15px;
        }
        
        .feedback-content {
            text-align: center;
        }
        
        .client-info {
            margin-top: 20px;
            font-style: italic;
        }
        
        .slider-nav {
            text-align: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
        }
        
        .slider-dot.active {
            background: var(--neon-pink);
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        
        .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 {
            max-height: 500px;
            padding: 20px;
        }
        
        /* Contact Section */
        .contact-container {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-form {
            display: grid;
            gap: 20px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            margin-bottom: 8px;
            color: var(--neon-blue);
        }
        
        .form-group input,
        .form-group textarea {
            padding: 12px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--neon-purple);
            border-radius: 5px;
            color: var(--text-color);
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: var(--dark-bg);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            border: 2px solid var(--neon-pink);
            max-width: 500px;
            width: 90%;
        }
        
        .modal h3 {
            color: var(--neon-blue);
            margin-bottom: 20px;
        }
        
        .close-modal {
            margin-top: 20px;
        }
        
        /* Disclaimer */
        .disclaimer {
            background: rgba(0, 0, 0, 0.7);
            padding: 30px 0;
            text-align: center;
            font-size: 0.9rem;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1500;
            border-top: 1px solid var(--neon-blue);
        }
        
        .cookie-content {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-banner button {
            background: var(--neon-blue);
            color: var(--dark-bg);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        
        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 50px 0 20px;
            border-top: 1px solid var(--neon-purple);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }
        
        .footer-links h4 {
            color: var(--neon-pink);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-blue);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
        }
        
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                height: calc(100vh - 80px);
                width: 100%;
                flex-direction: column;
                background: rgba(0, 0, 0, 0.9);
                transition: right 0.5s ease;
                padding: 50px 20px;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            section h2 {
                font-size: 2rem;
            }
            
            .pricing-container {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-plan {
                width: 100%;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-content {
                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;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

