
        :root {
            --primary: #FF4D80;
            --secondary: #00E5FF;
            --accent: #FFEB3B;
            --dark: #1A1A2E;
            --light: #F8F8FF;
            --text: #333333;
            --highlight: #9C27B0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
            background-image: 
                radial-gradient(circle at 10% 20%, var(--highlight) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, var(--primary) 0%, transparent 20%);
            background-attachment: fixed;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--primary);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--secondary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }

        section {
            padding: 4rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero {
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(255, 77, 128, 0.5);
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(255, 77, 128, 0.5);
            }
            to {
                text-shadow: 0 0 20px rgba(255, 77, 128, 0.8), 0 0 30px rgba(255, 77, 128, 0.6);
            }
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--light);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            margin-top: 1rem;
            box-shadow: 0 4px 15px rgba(255, 77, 128, 0.4);
        }

        .btn:hover {
            background-color: var(--highlight);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(156, 39, 176, 0.6);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            box-shadow: none;
        }

        .btn-secondary:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }

        .about {
            background-color: rgba(26, 26, 46, 0.7);
            backdrop-filter: blur(5px);
            border-radius: 20px;
            margin: 2rem auto;
            max-width: 1200px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 3rem 0;
        }

        .feature {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            margin: 1rem;
            padding: 2rem;
            background-color: rgba(0, 229, 255, 0.1);
            border-radius: 15px;
            border: 1px solid var(--secondary);
            text-align: center;
            transition: transform 0.3s;
        }

        .feature:hover {
            transform: translateY(-10px);
            background-color: rgba(0, 229, 255, 0.2);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .product {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin: 3rem 0;
        }

        .product-image {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            margin: 1rem;
            position: relative;
        }

        .product-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s;
        }

        .product-image:hover img {
            transform: scale(1.05);
        }

        .product-info {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
            margin: 1rem;
        }

        .ingredients {
            margin: 2rem 0;
        }

        .ingredient-list {
            display: flex;
            flex-wrap: wrap;
            margin: 1rem 0;
        }

        .ingredient {
            background-color: rgba(255, 235, 59, 0.1);
            border: 1px solid var(--accent);
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            font-size: 0.9rem;
        }

        .pricing {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 3rem 0;
        }

        .price-card {
            background-color: rgba(156, 39, 176, 0.1);
            border: 1px solid var(--highlight);
            border-radius: 15px;
            padding: 2rem;
            margin: 1rem;
            width: 280px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(156, 39, 176, 0.3);
        }

        .price-card h3 {
            color: var(--highlight);
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
            margin: 1rem 0;
        }

        .price-old {
            text-decoration: line-through;
            color: var(--light);
            opacity: 0.7;
            font-size: 1.5rem;
        }

        .badge {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent);
            color: var(--dark);
            padding: 0.5rem 1rem;
            font-weight: bold;
            border-radius: 0 15px 0 15px;
            font-size: 0.8rem;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            transition: all 0.3s;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .testimonials {
            margin: 3rem 0;
            position: relative;
        }

        .testimonial-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            margin: 2rem 0;
            padding: 1rem 0;
        }

        .testimonial {
            scroll-snap-align: start;
            flex: 0 0 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background-color: rgba(255, 77, 128, 0.1);
            border-radius: 15px;
            border: 1px solid var(--primary);
            text-align: center;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1.5rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
            border: 2px solid var(--secondary);
        }

        .author-info h4 {
            color: var(--accent);
            margin-bottom: 0.2rem;
        }

        .author-info p {
            color: var(--light);
            opacity: 0.7;
            font-size: 0.9rem;
            margin: 0;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--light);
            opacity: 0.5;
            margin: 0 0.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background-color: var(--primary);
            opacity: 1;
        }

        .faq {
            margin: 3rem 0;
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--secondary);
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            background-color: rgba(0, 229, 255, 0.1);
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }

        .faq-question:hover {
            background-color: rgba(0, 229, 255, 0.2);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: rgba(26, 26, 46, 0.5);
        }

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 500px;
        }

        .policy-page{
            max-width: 1000px;
            margin: 0px auto;
        }

        .contact-form {
            width: 100%;
            max-width: 600px;
            margin: 2rem auto;
            background-color: rgba(26, 26, 46, 0.7);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--highlight);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--secondary);
            border-radius: 5px;
            background-color: rgba(0, 229, 255, 0.1);
            color: var(--light);
            font-size: 1rem;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .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;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: var(--dark);
            padding: 3rem;
            border-radius: 15px;
            text-align: center;
            max-width: 500px;
            position: relative;
            border: 2px solid var(--primary);
        }

        .close-popup {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--light);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--secondary);
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
            max-width: 80%;
        }

        .cookie-banner .btn {
            margin: 0;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }

        footer {
            background-color: rgba(26, 26, 46, 0.9);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid var(--primary);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin: 1rem;
            text-align: left;
        }

        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            justify-content: center;
            margin: 2rem 0;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: var(--light);
            border-radius: 50%;
            margin: 0 0.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--highlight);
            transform: translateY(-3px);
        }

        .copyright {
            margin-top: 2rem;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .disclaimer {
            font-size: 0.8rem;
            opacity: 0.6;
            margin-top: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease-in;
                z-index: 999;
            }

            nav ul.active {
                transform: translateY(0);
            }

            nav ul li {
                margin: 1rem 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);
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            section {
                padding: 3rem 1rem;
            }

            .about {
                padding: 2rem 1rem;
            }

            .product-image, .product-info {
                min-width: 100%;
            }

            .popup-content {
                padding: 2rem 1rem;
                margin: 0 1rem;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-banner p {
                max-width: 100%;
                margin-bottom: 1rem;
            }
        }

        /* Parallax effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Fade-in animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 50px;
            border: 2px solid var(--primary);
            border-radius: 15px;
        }

        .scroll-indicator::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            width: 6px;
            height: 6px;
            background-color: var(--primary);
            border-radius: 50%;
            transform: translateX(-50%);
            animation: scroll 2s infinite;
        }

        @keyframes scroll {
            0% {
                opacity: 1;
                top: 8px;
            }
            100% {
                opacity: 0;
                top: 30px;
            }
        }
