/* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #0A0A2E;
            color: #FFFFFF;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(255, 0, 255, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #FF00FF;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: #00FFFF;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #00FFFF;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #FFFFFF;
            transition: all 0.3s ease;
        }
        
        /* Hero section */
        .hero {
            padding: 150px 0 100px;
            background: linear-gradient(135deg, #0A0A2E 0%, #1A1A4E 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 0, 255, 0.3) 0%, rgba(255, 0, 255, 0) 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, rgba(0, 255, 255, 0) 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-text {
            flex: 1;
            max-width: 600px;
        }
        
        .hero-title {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #FF00FF, #00FFFF);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: none;
        }
        
        .hero-subtitle {
            font-size: 20px;
            margin-bottom: 30px;
            color: #CCCCCC;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, #FF00FF, #00FFFF);
            color: #FFFFFF;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 0, 255, 0.6);
        }
        
        .hero-image {
            flex: 1;
            max-width: 500px;
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Section styles */
        section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            font-size: 36px;
            text-align: center;
            margin-bottom: 50px;
            background: linear-gradient(90deg, #FF1493, #00FFFF);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* About section */
        .about {
            background-color: #12124A;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .about-text {
            flex: 1;
            max-width: 600px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #CCCCCC;
        }
        
        .about-image {
            flex: 1;
            max-width: 500px;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
            transition: transform 0.5s ease;
        }
        
        .about-image img:hover {
            transform: scale(1.03);
        }
        
        /* Product Description */
        .product {
            background-color: #0A0A2E;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #12124A;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #FF00FF, #00FFFF);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 0, 255, 0.4);
        }
        
        .product-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #00FFFF;
        }
        
        .product-card p {
            color: #CCCCCC;
            margin-bottom: 20px;
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        /* Prices section */
        .prices {
            background-color: #12124A;
        }
        
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: #0A0A2E;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #00FFFF, #FF1493);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
        }
        
        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #FF1493;
        }
        
        .price {
            font-size: 36px;
            font-weight: bold;
            margin: 20px 0;
            color: #FFFFFF;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-card li {
            padding: 10px 0;
            color: #CCCCCC;
            position: relative;
            padding-left: 25px;
        }
        
        .price-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00FFFF;
        }
        
        /* Gallery section */
        .gallery {
            background-color: #0A0A2E;
        }
        
        .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 5px 15px rgba(255, 20, 147, 0.3);
            transition: all 0.3s ease;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(255, 20, 147, 0.5);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Reviews section */
        .reviews {
            background-color: #12124A;
        }
        
        .review-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .review-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .review {
            min-width: 100%;
            padding: 30px;
            background-color: #0A0A2E;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
        }
        
        .review-content {
            font-style: italic;
            color: #CCCCCC;
            margin-bottom: 20px;
            font-size: 18px;
            line-height: 1.8;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .review-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-author h4 {
            color: #00FFFF;
            font-size: 18px;
        }
        
        .review-author p {
            color: #CCCCCC;
            font-size: 14px;
        }
        
        .review-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .review-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .review-dot.active {
            background-color: #00FFFF;
        }
        
        /* FAQ section */
        .faq {
            background-color: #0A0A2E;
        }
        
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.2);
        }
        
        .faq-question {
            background-color: #12124A;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #1A1A5A;
        }
        
        .faq-question h3 {
            color: #FFFFFF;
            font-size: 18px;
        }
        
        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background-color: #FF00FF;
            transition: all 0.3s ease;
        }
        
        .faq-icon::before {
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            transform: translateY(-50%);
        }
        
        .faq-icon::after {
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            transform: translateX(-50%);
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            background-color: #12124A;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: #CCCCCC;
        }
        
        /* Contact Form */
        .contact {
            background-color: #12124A;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #0A0A2E;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #FFFFFF;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: #12124A;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: #FFFFFF;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00FFFF;
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-submit {
            text-align: center;
        }
        
        .form-submit button {
            background: linear-gradient(90deg, #FF00FF, #00FFFF);
            color: #FFFFFF;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
        }
        
        .form-submit button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 0, 255, 0.6);
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: 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;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: #12124A;
            padding: 40px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 30px rgba(255, 0, 255, 0.5);
            transform: scale(0.8);
            transition: all 0.3s ease;
        }
        
        .modal.active .modal-content {
            transform: scale(1);
        }
        
        .modal-content h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #00FFFF;
        }
        
        .modal-content p {
            color: #CCCCCC;
            margin-bottom: 30px;
        }
        
        .modal-close {
            background: linear-gradient(90deg, #FF00FF, #00FFFF);
            color: #FFFFFF;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 0, 255, 0.6);
        }
        
        /* Why Us section */
        .why-us {
            background-color: #0A0A2E;
        }
        
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .why-card {
            background-color: #12124A;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
        }
        
        .why-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #FF00FF, #00FFFF);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 36px;
            color: #FFFFFF;
        }
        
        .why-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #FF1493;
        }
        
        .why-card p {
            color: #CCCCCC;
        }
        
        /* Our Advantages section */
        .advantages {
            background-color: #12124A;
        }
        
        .advantages-marquee {
            overflow: hidden;
            position: relative;
            margin-top: 50px;
        }
        
        .advantages-track {
            display: flex;
            animation: marquee 20s linear infinite;
        }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .advantage-item {
            flex: 0 0 300px;
            background-color: #0A0A2E;
            border-radius: 15px;
            padding: 25px;
            margin-right: 30px;
            box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
        }
        
        .advantage-item h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #00FFFF;
        }
        
        .advantage-item p {
            color: #CCCCCC;
        }
        
        /* Disclaimer section */
        .disclaimer {
            background-color: #0A0A2E;
            padding: 50px 0;
        }
        
        .disclaimer-content {
            max-width: 800px;
            margin: 0 auto;
            background-color: #12124A;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
        }
        
        .disclaimer-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #FF1493;
        }
        
        .disclaimer-content p {
            color: #CCCCCC;
            margin-bottom: 15px;
        }
        
        /* Cookie banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #12124A;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            color: #CCCCCC;
            margin-right: 20px;
        }
        
        .cookie-text a {
            color: #00FFFF;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background: linear-gradient(90deg, #FF00FF, #00FFFF);
            color: #FFFFFF;
            border: none;
        }
        
        .cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
        }
        
        .cookie-decline {
            background-color: transparent;
            color: #CCCCCC;
            border: 1px solid #CCCCCC;
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Footer */
        footer {
            background-color: #0A0A2E;
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #FF1493;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #CCCCCC;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #00FFFF;
            padding-left: 5px;
        }
        
        .footer-contact p {
            color: #CCCCCC;
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #CCCCCC;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }
            
            .hero-text {
                margin-bottom: 40px;
                text-align: center;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text {
                margin-bottom: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: rgba(10, 10, 46, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: left 0.5s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .cookie-banner {
                flex-direction: column;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

