:root {
            --primary: #FF4E00;
            --secondary: #00B4D8;
            --accent: #FFD700;
            --dark: #1A1A2E;
            --light: #F8F8F8;
            --retro-font: 'Courier New', monospace;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--retro-font);
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 3px solid var(--primary);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            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: 80px 0;
        }
        
        .hero {
            height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), url('https://images.unsplash.com/photo-1533777324565-a040eb52facd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 600px;
            animation: fadeIn 1.5s ease-in-out;
        }
        
        h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--accent);
            text-transform: uppercase;
        }
        
        h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--primary);
            text-transform: uppercase;
        }
        
        h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--light);
            padding: 12px 30px;
            border: none;
            border-radius: 0;
            font-size: 18px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 20px;
        }
        
        .btn:hover {
            background-color: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
        }
        
        .about {
            background-color: var(--light);
            color: var(--dark);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border: 5px solid var(--primary);
            box-shadow: 10px 10px 0 var(--secondary);
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .products {
            background-color: var(--dark);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background-color: var(--light);
            color: var(--dark);
            padding: 30px;
            border: 3px solid var(--secondary);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
        }
        
        .product-card h3 {
            color: var(--primary);
        }
        
        .prices {
            background-color: var(--light);
            color: var(--dark);
        }
        
        .price-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }
        
        .price-card {
            background-color: var(--dark);
            color: var(--light);
            padding: 40px 30px;
            border: 3px solid var(--primary);
            width: 300px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }
        
        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255, 78, 0, 0.5);
        }
        
        .price-card h3 {
            color: var(--accent);
        }
        
        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--secondary);
            margin: 20px 0;
        }
        
        .price span {
            font-size: 16px;
        }
        
        .special {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: var(--accent);
            color: var(--dark);
            padding: 5px 15px;
            font-weight: bold;
            transform: rotate(15deg);
        }
        
        .gallery {
            background-color: var(--dark);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback {
            background-color: var(--light);
            color: var(--dark);
            position: relative;
        }
        
        .slider {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            min-width: 100%;
            padding: 30px;
            background-color: var(--dark);
            color: var(--light);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .slide h3 {
            color: var(--accent);
        }
        
        .stars {
            color: var(--accent);
            margin: 10px 0;
        }
        
        .controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .controls button {
            background-color: var(--primary);
            color: var(--light);
            border: none;
            padding: 10px 20px;
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .controls button:hover {
            background-color: var(--secondary);
        }
        
        .faq {
            background-color: var(--dark);
        }
        
        .accordion {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .accordion-item {
            margin-bottom: 20px;
            border: 1px solid var(--secondary);
        }
        
        .accordion-header {
            background-color: var(--primary);
            color: var(--light);
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .accordion-content {
            background-color: var(--light);
            color: var(--dark);
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .accordion-content p {
            padding: 20px 0;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: var(--light);
            color: var(--dark);
            padding: 40px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            font-family: var(--retro-font);
        }
        
        .form-group textarea {
            height: 150px;
        }
        
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 50px 0 20px;
            border-top: 3px solid var(--primary);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .disclaimer {
            background-color: var(--primary);
            color: var(--light);
            padding: 20px;
            text-align: center;
            font-size: 14px;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            color: var(--light);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 3px solid var(--secondary);
            transform: translateY(100%);
            transition: transform 0.5s;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin-right: 20px;
        }
        
        .cookie-banner button {
            background-color: var(--accent);
            color: var(--dark);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }
        
        .cookie-banner button:hover {
            background-color: var(--secondary);
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: var(--light);
            color: var(--dark);
            padding: 40px;
            max-width: 500px;
            text-align: center;
            position: relative;
            animation: modalFadeIn 0.5s;
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            h1 {
                font-size: 36px;
            }
            
            h2 {
                font-size: 28px;
            }
            
            .burger {
                display: block;
            }
            
            nav {
                display: none;
                width: 100%;
            }
            
            nav.active {
                display: block;
            }
            
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-banner p {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content {
                text-align: center;
            }
            
            .btn {
                display: block;
                text-align: center;
            }
            
            .contact-form {
                padding: 20px;
            }
        }

