@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Bebas+Neue&display=swap');
        
        :root {
            --color-primary: #1A237E; /* Dark Indigo */
            --color-secondary: #FF6E40; /* Vibrant Orange */
            --color-accent: #E0E0E0; /* Light Gray */
            --color-text: #F5F5F5; /* Off-white */
            --color-background: #121212; /* Dark background */
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--color-background);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* General Styles */
        h1, h2, h3 {
            font-family: 'Bebas Neue', sans-serif;
            color: var(--color-secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            background-color: rgba(18, 18, 18, 0.9);
            z-index: 1000;
            transition: background-color 0.3s ease;
            top: 0;
            left: 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--color-text);
            text-decoration: none;
            letter-spacing: 3px;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            gap: 40px;
        }

        .nav-menu a {
            color: var(--color-text);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--color-secondary);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger-menu span {
            width: 30px;
            height: 3px;
            background-color: var(--color-text);
            transition: all 0.3s ease;
        }

        .nav-menu.active {
            display: flex;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background-image: url('../img/02.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeIn 2s ease-in-out;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--color-secondary);
            color: var(--color-text);
            padding: 15px 30px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
            border-radius: 5px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .cta-button:hover {
            transform: scale(1.05);
            background-color: #FF5722;
        }

        /* About Section */
        .about {
            background-color: var(--color-primary);
            color: var(--color-text);
        }

        .about .container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            text-align: left;
            margin-top: 2rem;
        }
        
        .about-item {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: fadeInUp 1s ease-out;
            transition: transform 0.3s ease;
        }
        
        .about-item:hover {
            transform: translateY(-10px);
        }

        /* Products Section */
        .products {
            background-color: var(--color-background);
            text-align: center;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .product-card {
            background-color: var(--color-primary);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            animation: slideInLeft 1s ease-out;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .product-info {
            padding: 20px;
            text-align: left;
        }
        
        .product-info h3 {
            color: var(--color-secondary);
        }
        
        .product-info p {
            font-size: 1rem;
            margin-bottom: 15px;
        }

        /* Prices Section */
        .prices {
            background-color: var(--color-primary);
            text-align: center;
        }
        
        .prices-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .price-card {
            background-color: var(--color-background);
            border: 2px solid var(--color-secondary);
            border-radius: 10px;
            padding: 30px;
            flex: 1 1 300px;
            max-width: 350px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: slideInRight 1s ease-out;
        }
        
        .price-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        
        .price-card h3 {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .price-card .price {
            font-size: 3rem;
            font-weight: bold;
            color: var(--color-secondary);
            margin-bottom: 20px;
        }
        
        .price-card ul {
            list-style-type: none;
            margin-bottom: 20px;
            text-align: left;
        }
        
        .price-card li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .price-card li::before {
            content: '🎵';
            color: var(--color-secondary);
        }

        /* Gallery Section */
        .gallery {
            background-color: var(--color-background);
            text-align: center;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 2rem;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Feedback Section */
        .feedback {
            background-color: var(--color-primary);
            text-align: center;
        }
        
        .slider-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            min-width: 100%;
            padding: 30px;
            background-color: var(--color-background);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            text-align: left;
        }
        
        .slide p {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .slide .author {
            font-weight: bold;
            color: var(--color-secondary);
        }
        
        .slider-nav {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: var(--color-accent);
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--color-secondary);
        }

        /* FAQ Section */
        .faq {
            background-color: var(--color-background);
        }
        
        .faq-item {
            background-color: var(--color-primary);
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 20px;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        /* Contact Form */
        .contact {
            background-color: var(--color-primary);
            text-align: center;
            padding: 80px 0;
        }
        
        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px;
            background-color: var(--color-background);
            border: 1px solid var(--color-accent);
            border-radius: 5px;
            color: var(--color-text);
        }
        
        .submit-btn {
            background-color: var(--color-secondary);
            color: var(--color-text);
            border: none;
            padding: 15px 30px;
            cursor: pointer;
            border-radius: 5px;
            text-transform: uppercase;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: #FF5722;
        }

        /* Pop-up */
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(0, 0, 0, 0.9);
            color: var(--color-text);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            z-index: 1001;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.5s ease-in-out;
        }

        .popup-message h3 {
            margin-bottom: 10px;
        }
        
        .popup-close {
            position: absolute;
            top: 10px;
            right: 15px;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* Disclaimer */
        #disclaimer {
            background-color: #000;
            text-align: center;
            padding: 20px;
            font-size: 0.8rem;
            color: #777;
        }
        
        #disclaimer p {
            margin: 0;
        }

        /* Footer */
        footer {
            background-color: #000;
            color: var(--color-accent);
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-links, .footer-contact {
            text-align: left;
        }
        
        .footer-links h4, .footer-contact h4 {
            font-size: 1.2rem;
            color: var(--color-text);
            margin-bottom: 15px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links a, .footer-contact p {
            color: var(--color-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--color-secondary);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: rgba(0, 0, 0, 0.9);
            color: var(--color-text);
            padding: 20px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            z-index: 999;
        }
        
        .cookie-banner a {
            color: var(--color-secondary);
            text-decoration: none;
        }
        
        .cookie-banner button {
            background-color: var(--color-secondary);
            color: var(--color-text);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        
        .cookie-banner button:hover {
            background-color: #FF5722;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Media Queries */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(18, 18, 18, 0.95);
                text-align: center;
                gap: 20px;
                padding: 20px 0;
            }
            .nav-menu.active {
                display: flex;
            }
            .burger-menu {
                display: flex;
            }
        }

