:root {
            --primary: #FF5E7D;
            --secondary: #00C4CC;
            --dark: #1A1A2E;
            --light: #F5F5F5;
            --accent: #FFD166;
            --retro-bg: #2D3047;
            --retro-text: #E0E0E0;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: var(--retro-bg);
            color: var(--retro-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 1rem 2rem;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s;
        }
        main {
            margin-top: 80px;
        }
        section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        h1, h2, h3 {
            margin-bottom: 1.5rem;
            color: var(--accent);
        }
        h1 {
            font-size: 3rem;
        }
        h2 {
            font-size: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 1rem;
        }
        .hero {
            background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b') no-repeat center/cover;
            height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--light);
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            margin-top: 1rem;
            transition: all 0.3s;
        }
        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: var(--dark);
            margin: 2rem auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        .gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .gallery img:hover {
            transform: scale(1.05);
        }
        .feedback-slider {
            overflow: hidden;
            position: relative;
        }
        .feedback-item {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 8px;
            margin: 1rem;
            text-align: center;
        }
        .faq-item {
            margin-bottom: 1rem;
        }
        .faq-question {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            cursor: pointer;
            border-radius: 5px;
        }
        .faq-answer {
            padding: 1rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 0 0 5px 5px;
            display: none;
        }
        .faq-answer.active {
            display: block;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }
        input, textarea {
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light);
        }
        textarea {
            resize: vertical;
        }
        footer {
            background-color: var(--dark);
            padding: 2rem;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: var(--light);
            text-decoration: none;
        }
        .disclaimer {
            font-size: 0.8rem;
            opacity: 0.7;
            margin-top: 2rem;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 1rem;
            text-align: center;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
            display: none;
        }
        .cookie-banner.show {
            display: block;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background-color: var(--dark);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            text-align: center;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateX(-100%);
                transition: transform 0.3s;
            }
            .nav-links.active {
                transform: translateX(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);
            }
        }

