* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        :root {
            --primary: #0a0e27;
            --secondary: #00d4ff;
            --accent: #ff006e;
            --accent2: #8338ec;
            --accent3: #3a86ff;
            --text: #ffffff;
            --text-dark: #0a0e27;
            --light: #f8f9fa;
        }

        body {
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
            color: var(--text);
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        nav {
            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(--secondary);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            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(--text);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
            background-image: url('../img/01.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(26, 31, 58, 0.8) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--light);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(45deg, var(--secondary), var(--accent3));
            color: var(--text);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5);
        }

        /* About Section */
        .about {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .about.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-content {
            flex: 1;
            min-width: 300px;
            padding-right: 50px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(131, 56, 236, 0.5);
        }

        .about h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .about p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Products Section */
        .products {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .products.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .products h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--secondary);
        }

        .product-cards {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .product-card {
            flex: 1;
            min-width: 300px;
            background: rgba(26, 31, 58, 0.7);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 0 20px rgba(131, 56, 236, 0.3);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(131, 56, 236, 0.5);
        }

        .product-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--accent);
        }

        .product-card p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Prices Section */
        .prices {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .prices.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .prices h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--secondary);
        }

        .price-cards {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .price-card {
            flex: 1;
            min-width: 300px;
            background: rgba(26, 31, 58, 0.7);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 0 20px rgba(131, 56, 236, 0.3);
            transition: all 0.3s ease;
            position: relative;
        }

        .price-card.featured {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(131, 56, 236, 0.5);
        }

        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--accent);
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary);
            margin: 20px 0;
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .price-card li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .price-card li::before {
            content: '✓ ';
            color: var(--secondary);
            font-weight: bold;
        }

        /* Gallery Section */
        .gallery {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .gallery.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--secondary);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 0 20px rgba(131, 56, 236, 0.3);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Feedback Section */
        .feedback {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .feedback.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feedback h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--secondary);
        }

        .testimonial-container {
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial {
            display: none;
            background: rgba(26, 31, 58, 0.7);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 0 20px rgba(131, 56, 236, 0.3);
        }

        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--accent);
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: var(--secondary);
        }

        /* FAQ Section */
        .faq {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .faq.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--secondary);
            text-align: center;
        }

        .faq-item {
            background: rgba(26, 31, 58, 0.7);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(131, 56, 236, 0.3);
        }

        .faq-question {
            padding: 20px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(131, 56, 236, 0.1);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        .faq-plus {
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-plus {
            transform: rotate(45deg);
        }

        /* Contact Form */
        .contact-form {
            padding: 100px 20px;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .contact-form.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-form h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--secondary);
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border-radius: 5px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text);
            font-size: 1rem;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .submit-button {
            padding: 15px 30px;
            background: linear-gradient(45deg, var(--secondary), var(--accent3));
            color: var(--text);
            border: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5);
        }

        /* Popup */
        .popup {
            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;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
            transform: scale(0.7);
            transition: all 0.3s ease;
        }

        .popup.active .popup-content {
            transform: scale(1);
        }

        .popup h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .popup p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .popup-close {
            padding: 10px 20px;
            background: linear-gradient(45deg, var(--secondary), var(--accent3));
            color: var(--text);
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .popup-close:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.7);
        }

        /* Disclaimer */
        .disclaimer {
            padding: 20px;
            background: rgba(10, 14, 39, 0.7);
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Footer */
        footer {
            background: rgba(10, 14, 39, 0.9);
            padding: 50px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(10, 14, 39, 0.9);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(150%);
            transition: all 0.5s ease;
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }

        .cookie-text p {
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        .cookie-text a {
            color: var(--secondary);
            text-decoration: none;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background: linear-gradient(45deg, var(--secondary), var(--accent3));
            color: var(--text);
        }

        .cookie-decline {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--text);
        }

        .cookie-button:hover {
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                height: calc(100vh - 70px);
                width: 100%;
                background: rgba(10, 14, 39, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: all 0.5s ease;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 20px 0;
            }

            .burger {
                display: block;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .about {
                flex-direction: column;
            }

            .about-content {
                padding-right: 0;
                margin-bottom: 30px;
            }

            .price-card.featured {
                transform: scale(1);
            }

            .cookie-banner {
                flex-direction: column;
                align-items: flex-start;
            }

            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }

