:root {
            --neon-pink: #ff2d95;
            --neon-blue: #0ff0fc;
            --neon-purple: #8a2be2;
            --dark-bg: #0d0221;
            --medium-bg: #170447;
            --light-text: #ffffff;
            --accent-green: #00f6a9;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;}

        main {
            max-width: 1000px;
            margin: 0 auto;
            background-color: rgba(23, 4, 71, 0.5);
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid var(--neon-purple);
            box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
        }

        h1 {
            color: var(--neon-blue);
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            text-shadow: 0 0 10px rgba(0, 240, 252, 0.3);
        }

        h2 {
            color: var(--accent-green);
            margin: 2rem 0 1rem;
            font-size: 1.8rem;
        }

        h3 {
            color: var(--neon-pink);
            margin: 1.5rem 0 0.5rem;
            font-size: 1.3rem;
        }

        p, ul {
            margin-bottom: 1rem;
        }

        ul {
            padding-left: 2rem;
        }

        li {
            margin-bottom: 0.5rem;
        }

        .last-updated {
            text-align: center;
            font-style: italic;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.7);
        }
:root {
            --neon-pink: #ff2d95;
            --neon-blue: #0ff0fc;
            --neon-purple: #8a2be2;
            --dark-bg: #0d0221;
            --medium-bg: #170447;
            --light-text: #ffffff;
            --accent-green: #00f6a9;
            --accent-orange: #ff7c00;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: linear-gradient(to bottom, var(--dark-bg), var(--medium-bg));}

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 0 15px var(--neon-pink);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 5px var(--neon-pink);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-pink);
            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(--light-text);
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 2rem;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?ixlib=rb-4.0.3&auto=format&fit=crop&w=700&q=80') no-repeat center center/cover;
            opacity: 0.3;
            z-index: -1;
        }

        .hero-content {
            max-width: 800px;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--accent-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradientShift 5s infinite alternate;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--light-text);
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 45, 149, 0.5);
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 25px rgba(255, 45, 149, 0.8);
        }

        /* Section Common Styles */
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        section h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--neon-blue);
            text-shadow: 0 0 10px rgba(0, 240, 252, 0.3);
        }

        /* About Section */
        .about {
            background-color: rgba(23, 4, 71, 0.5);
            border-radius: 20px;
            margin: 3rem auto;
            padding: 4rem 2rem;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 20px var(--neon-purple);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image img:hover {
            transform: scale(1.05);
        }

        /* Products Section */
        .products {
            margin: 5rem auto;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background: rgba(138, 43, 226, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--neon-purple);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 25px var(--neon-purple);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .product-card h3 {
            color: var(--accent-green);
            margin-bottom: 0.5rem;
        }

        /* Prices Section */
        .prices {
            background-color: rgba(13, 2, 33, 0.7);
            border-radius: 20px;
            margin: 5rem auto;
            padding: 4rem 2rem;
        }

        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .price-card {
            background: linear-gradient(145deg, var(--medium-bg), var(--dark-bg));
            border-radius: 15px;
            padding: 2rem;
            width: 300px;
            text-align: center;
            box-shadow: 0 0 20px rgba(255, 124, 0, 0.3);
            border: 1px solid var(--accent-orange);
            transition: all 0.3s ease;
        }

        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 124, 0, 0.5);
        }

        .price-card h3 {
            color: var(--accent-orange);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .price {
            font-size: 2rem;
            color: var(--neon-blue);
            margin: 1rem 0;
            font-weight: bold;
        }

        .price-card ul {
            list-style: none;
            margin: 1rem 0;
            text-align: left;
        }

        .price-card ul li {
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-green);
        }

        /* Gallery Section */
        .gallery {
            margin: 5rem auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            position: relative;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 45, 149, 0.3), rgba(0, 240, 252, 0.3));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        /* Feedback Section */
        .feedback {
            background-color: rgba(23, 4, 71, 0.5);
            border-radius: 20px;
            margin: 5rem auto;
            padding: 4rem 2rem;
        }

        .slider {
            position: relative;
            max-width: 800px;
            margin: 3rem auto;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            padding: 2rem;
            background: rgba(13, 2, 33, 0.7);
            border-radius: 15px;
            box-shadow: 0 0 15px var(--neon-pink);
        }

        .slide-content {
            text-align: center;
        }

        .client-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            overflow: hidden;
            border: 3px solid var(--neon-pink);
        }

        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-name {
            color: var(--neon-blue);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 1rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--light-text);
            opacity: 0.5;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            opacity: 1;
            background-color: var(--neon-pink);
            transform: scale(1.2);
        }

        /* FAQ Section */
        .faq {
            margin: 5rem auto;
        }

        .accordion {
            max-width: 800px;
            margin: 3rem auto;
        }

        .accordion-item {
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            background: rgba(13, 2, 33, 0.7);
            border: 1px solid var(--neon-purple);
        }

        .accordion-header {
            padding: 1.5rem;
            background: rgba(138, 43, 226, 0.2);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--neon-blue);
        }

        .accordion-content {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-content.active {
            max-height: 500px;
            padding: 1.5rem;
        }

        /* Contact Section */
        .contact {
            background-color: rgba(13, 2, 33, 0.7);
            border-radius: 20px;
            margin: 5rem auto;
            padding: 4rem 2rem;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--neon-blue);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--neon-purple);
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light-text);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-pink);
            box-shadow: 0 0 10px rgba(255, 45, 149, 0.5);
        }

        textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Disclaimer */
        .disclaimer {
            background-color: rgba(13, 2, 33, 0.9);
            padding: 2rem;
            margin: 5rem auto 0;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.95);
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            margin-right: 2rem;
        }

        .cookie-btn {
            padding: 0.5rem 1.5rem;
            background: var(--neon-purple);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cookie-btn:hover {
            background: var(--neon-pink);
        }

        /* Footer */
        footer {
            background-color: var(--dark-bg);
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            color: var(--neon-blue);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--neon-pink);
        }

        .copyright {
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Popup */
        .popup {
            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;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background: linear-gradient(145deg, var(--dark-bg), var(--medium-bg));
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 0 30px var(--neon-pink);
            border: 1px solid var(--neon-purple);
        }

        .popup h3 {
            color: var(--neon-blue);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .popup-btn {
            margin-top: 1.5rem;
            padding: 0.8rem 2rem;
            background: var(--neon-purple);
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .popup-btn:hover {
            background: var(--neon-pink);
            transform: scale(1.05);
        }

        /* Responsive Styles */
        @media screen and (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                height: calc(100vh - 70px);
                width: 70%;
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                z-index: 999;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 1.5rem 0;
            }

            .burger {
                display: block;
            }

            .burger.active div:nth-child(1) {
                transform: rotate(45deg) translate(5px, 8px);
            }

            .burger.active div:nth-child(2) {
                opacity: 0;
            }

            .burger.active div:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -8px);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            section h2 {
                font-size: 2rem;
            }
        }

