* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary: #1a0033;
            --secondary: #FF00FF;
            --accent: #00FFFF;
            --light: #FFD700;
            --dark: #9370DB;
            --gradient: linear-gradient(135deg, #1a0033 0%, #4B0082 100%);
        }
        
        body {
            background-color: var(--primary);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: rgba(26, 0, 51, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(255, 0, 255, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--accent);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background: white;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            background: var(--gradient);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/16.webp') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
            line-height: 1.2;
        }
        
        .hero h1 span {
            color: var(--secondary);
            text-shadow: 0 0 15px rgba(255, 0, 255, 0.7);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--accent);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:hover {
            color: var(--primary);
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.7);
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--secondary);
            transition: width 0.3s ease;
            z-index: -1;
        }
        
        .btn:hover::before {
            width: 100%;
        }
        
        /* Sections */
        section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            color: white;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        
        /* About Section */
        .about {
            background: rgba(26, 0, 51, 0.5);
        }
        
        .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(--secondary);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Product Description */
        .product {
            background: rgba(75, 0, 130, 0.3);
        }
        
        .product-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature {
            background: rgba(26, 0, 51, 0.7);
            padding: 30px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
            transition: all 0.3s ease;
        }
        
        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 0, 255, 0.1);
        }
        
        .feature h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .feature p {
            color: var(--accent);
        }
        
        /* Gallery */
        .gallery {
            background: rgba(26, 0, 51, 0.5);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(255, 0, 255, 0.3);
        }
        
        .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;
            width: 100%;
            background: linear-gradient(to top, rgba(26, 0, 51, 0.9), transparent);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-overlay h3 {
            color: var(--secondary);
            font-size: 1.2rem;
        }
        
        /* Pricing */
        .pricing {
            background: rgba(75, 0, 130, 0.3);
        }
        
        .pricing-plans {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .plan {
            background: rgba(26, 0, 51, 0.7);
            border-radius: 8px;
            padding: 30px;
            width: 300px;
            text-align: center;
            border: 1px solid rgba(255, 0, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .plan:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 0, 255, 0.2);
            border-color: var(--secondary);
        }
        
        .plan.featured {
            border: 2px solid var(--secondary);
        }
        
        .plan.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--secondary);
            color: var(--primary);
            padding: 5px 40px;
            font-weight: 700;
            transform: rotate(45deg);
            font-size: 0.8rem;
        }
        
        .plan h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .plan-price {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .plan-price span {
            font-size: 1rem;
            color: var(--accent);
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .plan-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--accent);
        }
        
        /* Testimonials */
        .testimonials {
            background: rgba(26, 0, 51, 0.5);
        }
        
        .testimonials-slider {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .testimonial {
            position: absolute;
            width: 100%;
            padding: 30px;
            background: rgba(75, 0, 130, 0.7);
            border-radius: 8px;
            opacity: 0;
            transition: opacity 1s ease;
            text-align: center;
        }
        
        .testimonial.active {
            opacity: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: white;
            font-size: 1.1rem;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--secondary);
        }
        
        .testimonial-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--dark);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-dot.active {
            background: var(--secondary);
            transform: scale(1.2);
        }
        
        /* FAQ */
        .faq {
            background: rgba(75, 0, 130, 0.3);
        }
        
        .faq-items {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: rgba(26, 0, 51, 0.7);
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(26, 0, 51, 0.7);
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: rgba(26, 0, 51, 0.9);
        }
        
        .faq-question h3 {
            color: white;
            font-size: 1.2rem;
        }
        
        .faq-icon {
            color: var(--secondary);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: rgba(26, 0, 51, 0.5);
        }
        
        .faq-answer p {
            padding: 0 20px 20px;
            color: var(--accent);
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        /* Why Us */
        .why-us {
            background: rgba(26, 0, 51, 0.5);
        }
        
        .why-us-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .why-item {
            text-align: center;
            padding: 30px;
            background: rgba(75, 0, 130, 0.5);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .why-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 0, 255, 0.1);
        }
        
        .why-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .why-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .why-item p {
            color: var(--accent);
        }
        
        /* How It Works */
        .how-it-works {
            background: rgba(75, 0, 130, 0.3);
        }
        
        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            position: relative;
        }
        
        .steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 50px;
            right: 50px;
            height: 4px;
            background: var(--dark);
            z-index: 0;
        }
        
        .step {
            width: 30%;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 15px;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border: 3px solid var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary);
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
        }
        
        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .step p {
            color: var(--accent);
        }
        
        /* Contact Form */
        .contact {
            background: rgba(26, 0, 51, 0.5);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(75, 0, 130, 0.7);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: white;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(26, 0, 51, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-submit {
            text-align: center;
            margin-top: 30px;
        }
        
        /* Disclaimer */
        .disclaimer {
            background: rgba(75, 0, 130, 0.3);
            padding: 40px 0;
            text-align: center;
            font-size: 0.9rem;
            color: var(--accent);
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 0, 255, 0.2);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
        }
        
        .footer-column {
            margin-right: 50px;
            margin-bottom: 30px;
        }
        
        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .footer-contact {
            margin-bottom: 30px;
        }
        
        .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .footer-contact p {
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--accent);
            font-size: 0.9rem;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(26, 0, 51, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 0, 255, 0.3);
            border-radius: 8px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
            color: white;
            font-size: 0.9rem;
        }
        
        .cookie-text a {
            color: var(--secondary);
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            background: transparent;
            border: 1px solid var(--secondary);
            border-radius: 4px;
            color: var(--secondary);
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .cookie-btn:hover {
            background: var(--secondary);
            color: var(--primary);
        }
        
        .cookie-btn.accept {
            background: var(--secondary);
            color: var(--primary);
        }
        
        .cookie-btn.accept:hover {
            background: transparent;
            color: var(--secondary);
        }
        
        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background: var(--primary);
            border: 1px solid var(--secondary);
            border-radius: 8px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }
        
        .popup.show .popup-content {
            transform: scale(1);
        }
        
        .popup h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .popup p {
            margin-bottom: 30px;
            color: white;
        }
        
        .popup-close {
            background: var(--secondary);
            color: var(--primary);
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .popup-close:hover {
            background: transparent;
            color: var(--secondary);
            border: 1px solid var(--secondary);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .marquee {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }
        
        .marquee-content {
            display: inline-block;
            animation: marquee 20s linear infinite;
        }
        
        .marquee-item {
            display: inline-block;
            padding: 0 50px;
            color: var(--secondary);
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .steps::before {
                display: none;
            }
            
            .step {
                width: 100%;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(26, 0, 51, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: right 0.5s ease;
            }
            
            .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, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .plan {
                width: 100%;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-column {
                margin-right: 0;
            }
        }

