
        :root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --dark-purple: #1a1b41;
            --cyber-yellow: #f9c80e;
            --matrix-green: #00ff9d;
            --main-bg: #0d0221;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--main-bg);
            color: white;
            overflow-x: hidden;
            padding-top: 80px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--neon-pink);
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .logo h1 {
            color: var(--electric-blue);
            font-size: 1.8rem;
            text-shadow: 0 0 10px var(--electric-blue);
            letter-spacing: 2px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            position: relative;
            transition: all 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--neon-pink);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-pink);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: white;
            transition: all 0.3s;
        }
        
        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        section {
            padding: 80px 5%;
            position: relative;
        }
        
        .hero {
            height: calc(100vh - 80px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(rgba(13, 2, 33, 0.7), rgba(13, 2, 33, 0.7)), 
                        url('https://images.unsplash.com/photo-1593305841991-05c297ba4575?q=80&w=1057&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 600px;
            animation: fadeIn 1.5s ease-out;
        }
        
        .hero-content h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--electric-blue);
            text-shadow: 0 0 15px var(--electric-blue);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--neon-pink);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 0 15px var(--neon-pink);
        }
        
        .btn:hover {
            background-color: var(--electric-blue);
            box-shadow: 0 0 20px var(--electric-blue);
            transform: translateY(-3px);
        }
        
        .hero-image {
            width: 45%;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 30px var(--neon-pink);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--cyber-yellow);
            display: inline-block;
            position: relative;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--neon-pink);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--matrix-green);
        }
        
        .about-text p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px var(--electric-blue);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background-color: rgba(26, 27, 65, 0.7);
            padding: 30px;
            border-radius: 10px;
            transition: all 0.3s;
            border: 1px solid var(--dark-purple);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 42, 109, 0.3);
            border-color: var(--neon-pink);
        }
        
        .feature-card i {
            font-size: 2.5rem;
            color: var(--electric-blue);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--cyber-yellow);
        }
        
        .pricing {
            background-color: rgba(26, 27, 65, 0.3);
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background-color: var(--dark-purple);
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--electric-blue);
        }
        
        .pricing-card.popular {
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.3);
        }
        
        .popular-tag {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--neon-pink);
            color: white;
            padding: 5px 15px;
            font-size: 0.8rem;
            border-bottom-left-radius: 10px;
        }
        
        .pricing-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--cyber-yellow);
        }
        
        .price {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--matrix-green);
        }
        
        .price span {
            font-size: 1rem;
            color: white;
        }
        
        .pricing-card ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .pricing-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--matrix-green);
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 0 20px var(--neon-pink);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .testimonials {
            background-color: rgba(26, 27, 65, 0.3);
        }
        
        .testimonial-slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .testimonial-slide {
            display: none;
            padding: 30px;
            background-color: var(--dark-purple);
            border-radius: 10px;
            text-align: center;
            transition: all 0.5s;
            border: 1px solid var(--electric-blue);
        }
        
        .testimonial-slide.active {
            display: block;
            animation: fadeIn 1s ease-in-out;
        }
        
        .testimonial-slide .quote {
            font-size: 1.2rem;
            margin-bottom: 20px;
            line-height: 1.6;
            font-style: italic;
        }
        
        .testimonial-slide .author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .testimonial-slide .author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--neon-pink);
        }
        
        .author-info h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--cyber-yellow);
        }
        
        .author-info p {
            font-size: 0.9rem;
            color: #aaa;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #333;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .slider-dot.active {
            background-color: var(--neon-pink);
            transform: scale(1.2);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--electric-blue);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: var(--dark-purple);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(26, 27, 65, 0.8);
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
            color: white;
        }
        
        .faq-question .icon {
            font-size: 1.5rem;
            color: var(--electric-blue);
            transition: transform 0.3s;
        }
        
        .faq-question.active .icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease-out;
            background-color: rgba(26, 27, 65, 0.5);
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-answer p {
            line-height: 1.6;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--dark-purple);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(5, 217, 232, 0.2);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--electric-blue);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-pink);
            box-shadow: 0 0 10px var(--neon-pink);
        }
        
        .form-group textarea {
            resize: none;
            min-height: 120px;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: var(--dark-purple);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 30px var(--neon-pink);
            animation: modalFadeIn 0.5s ease-out;
        }
        
        .modal-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--matrix-green);
        }
        
        .modal-content p {
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .close-modal {
            background-color: var(--neon-pink);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .close-modal:hover {
            background-color: var(--electric-blue);
            box-shadow: 0 0 20px var(--electric-blue);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-purple);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--electric-blue);
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            max-width: 80%;
            line-height: 1.6;
        }
        
        .cookie-banner .btn {
            background-color: var(--matrix-green);
            color: var(--dark-purple);
            box-shadow: none;
        }
        
        .cookie-banner .btn:hover {
            background-color: var(--electric-blue);
            color: white;
        }
        
        footer {
            background-color: var(--dark-purple);
            padding: 60px 5% 30px;
            color: white;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .legal-page{
            max-width: 1000px;
            margin: 0px auto;
            display: grid;
            gap: 32px;
            margin-bottom: 32px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--cyber-yellow);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--neon-pink);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--electric-blue);
            padding-left: 5px;
        }
        
        .contact-info {
            margin-top: 15px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--neon-pink);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        .disclaimer {
            font-size: 0.8rem;
            color: #777;
            line-height: 1.6;
            margin-top: 40px;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 5px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes modalFadeIn {
            from { 
                opacity: 0;
                transform: translateY(-50px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 50px;
                height: auto;
            }
            
            .hero-content {
                margin-bottom: 50px;
            }
            
            .hero-image {
                width: 80%;
            }
            
            .about-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--main-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 40px;
                transition: all 0.5s;
                z-index: 999;
            }
            
            nav ul.active {
                left: 0;
            }
            
            .burger {
                display: flex;
            }
            
            .hero-content h2 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .cookie-banner p {
                max-width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h2 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
        }
