:root {
            --primary-color: #5d2e95; /* Deep Purple */
            --secondary-color: #f7b32b; /* Vibrant Yellow */
            --accent-color: #0b0c2a; /* Dark Blue */
            --text-color: #e5e4e2; /* Light Gray */
            --bg-color: #2e0e4f; /* Dark Purple */
            --font-family: 'Courier New', Courier, monospace;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            width: 100%;
            background-color: rgba(46, 14, 79, 0.9);
            padding: 1rem 2rem;
            z-index: 1000;
            transition: background-color 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            color: var(--secondary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease, transform 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease, left 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
            left: 0;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 2rem;
            height: 2rem;
        }

        .burger-menu span {
            width: 100%;
            height: 3px;
            background-color: var(--secondary-color);
            transition: all 0.3s ease;
        }

        main {
            padding-top: 6rem;
        }

        section {
            padding: 4rem 1rem;
            position: relative;
            z-index: 10;
        }

        h1, h2, h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        p {
            max-width: 800px;
            margin: 0 auto 1rem;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: url('../img/09.webp') no-repeat center center/cover;
            color: var(--text-color);
            position: relative;
            flex-direction: column;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(11, 12, 42, 0.7);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeIn 2s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .cta-button {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--accent-color);
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            border: 2px solid var(--secondary-color);
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .cta-button:hover {
            background-color: transparent;
            color: var(--secondary-color);
        }

        .about, .products, .prices, .gallery, .feedback, .faq {
            text-align: center;
            position: relative;
        }

        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .about {
            background-color: var(--accent-color);
            position: relative;
        }
        
        .about::before {
            content: "";
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
        }

        .about p {
            font-size: 1.1rem;
        }

        .products {
            background-color: var(--primary-color);
            padding-bottom: 6rem;
            position: relative;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .product-card {
            background-color: rgba(11, 12, 42, 0.5);
            padding: 1rem;
            border: 1px solid var(--secondary-color);
            animation: slideInUp 0.8s ease-out;
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .product-card img {
            width: 100%;
            height: auto;
            border: 1px solid var(--secondary-color);
        }

        .products h3 {
            color: var(--secondary-color);
        }

        .prices {
            background-color: var(--accent-color);
        }

        .price-card {
            border: 2px solid var(--secondary-color);
            padding: 2rem;
            margin: 2rem auto;
            max-width: 400px;
            position: relative;
        }

        .price-card h3 {
            font-size: 1.8rem;
        }

        .price {
            font-size: 3rem;
            color: var(--secondary-color);
            margin: 1rem 0;
        }
        
        .gallery {
            background-color: var(--bg-color);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .gallery-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: 1px solid var(--secondary-color);
            transition: transform 0.3s ease;
        }
        
        .gallery-grid img:hover {
            transform: scale(1.05);
        }

        .feedback {
            background-color: var(--primary-color);
            position: relative;
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 2rem auto;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }

        .feedback-card {
            min-width: 100%;
            padding: 2rem;
            background-color: rgba(11, 12, 42, 0.5);
            border: 1px solid var(--secondary-color);
            text-align: center;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 1rem;
            z-index: 20;
        }

        .slider-nav button {
            background-color: var(--secondary-color);
            border: none;
            color: var(--accent-color);
            padding: 0.5rem;
            cursor: pointer;
            font-size: 1.5rem;
            transition: opacity 0.3s ease;
        }

        .slider-nav button:hover {
            opacity: 0.8;
        }

        .faq {
            background-color: var(--accent-color);
        }

        .faq-item {
            max-width: 800px;
            margin: 1rem auto;
            border-bottom: 1px solid var(--secondary-color);
            text-align: left;
        }

        .faq-question {
            cursor: pointer;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question h3 {
            margin: 0;
            color: var(--text-color);
        }

        .faq-question::after {
            content: '+';
            color: var(--secondary-color);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            content: '-';
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 1rem;
        }
        
        .faq-answer p {
            padding-bottom: 1rem;
        }

        .contact {
            background-color: var(--primary-color);
            text-align: center;
        }

        .contact-form {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-form input {
            padding: 1rem;
            border: 2px solid var(--secondary-color);
            background-color: rgba(11, 12, 42, 0.5);
            color: var(--text-color);
        }
        
        .contact-form input::placeholder {
            color: rgba(229, 228, 226, 0.7);
        }

        .contact-form button {
            padding: 1rem;
            background-color: var(--secondary-color);
            color: var(--accent-color);
            border: none;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .contact-form button:hover {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            transform: translateY(-2px);
        }

        .disclaimer {
            background-color: var(--accent-color);
            padding: 2rem 1rem;
            text-align: center;
            border-top: 1px solid var(--secondary-color);
            font-size: 0.8rem;
            color: rgba(229, 228, 226, 0.7);
        }

        footer {
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 2rem 1rem;
            text-align: center;
            border-top: 1px solid var(--secondary-color);
        }

        footer .footer-links {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1rem;
        }
        
        footer a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: var(--secondary-color);
        }

        /* Cookie banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(11, 12, 42, 0.9);
            color: var(--text-color);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2000;
            border-top: 2px solid var(--secondary-color);
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner button {
            background-color: var(--secondary-color);
            color: var(--accent-color);
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
            font-weight: bold;
        }
        
        .cookie-banner a {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        /* Modal Popup */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 3000;
        }

        .modal-content {
            background-color: var(--primary-color);
            padding: 2rem;
            border: 2px solid var(--secondary-color);
            color: var(--text-color);
            text-align: center;
            position: relative;
        }

        .close-button {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: var(--secondary-color);
            cursor: pointer;
        }

        /* Animations */
        .animated-element {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animated-element.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 6rem;
                left: 0;
                width: 100%;
                background-color: rgba(46, 14, 79, 0.95);
                padding: 1rem 0;
                text-align: center;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu a {
                padding: 1rem;
                border-bottom: 1px solid var(--secondary-color);
            }

            .burger-menu {
                display: flex;
            }
        }

