:root {
            --primary-color: #e53935;
            --secondary-color: #212121;
            --accent-color: #ffb74d;
            --text-color: #ffffff;
            --bg-color: #121212;
            --light-text: #bdbdbd;
            --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        * {
            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;
        }
        
        a {
            text-decoration: none;
            color: var(--accent-color);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--primary-color);
        }

        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        header {
            background-color: var(--secondary-color);
            position: fixed;
            width: 100%;
            z-index: 1000;
            top: 0;
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-color);
        }

        .main-nav {
            display: flex;
        }

        .main-nav a {
            color: var(--text-color);
            margin-left: 2rem;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .main-nav a:hover {
            color: var(--primary-color);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px;
            transition: all 0.3s ease;
        }
        
        .hero {
            position: relative;
            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);
            animation: fadeIn 2s ease-in-out;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
        }

        .hero-content {
            z-index: 1;
            padding: 1rem;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: slideInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--light-text);
            animation: slideInUp 1.2s ease-out;
        }

        .btn {
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s ease;
            animation: slideInUp 1.4s ease-out;
            display: inline-block;
        }

        .btn:hover {
            transform: scale(1.05);
            background-color: #d32f2f;
        }

        section {
            padding: 5rem 0;
            position: relative;
        }

        .about {
            background-color: var(--secondary-color);
        }

        .about h2, .products h2, .prices h2, .gallery h2, .feedback h2, .faq h2 {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }
        
        .about-image img:hover {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background-color: var(--secondary-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card h3 {
            color: var(--accent-color);
        }

        .prices-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .price-card {
            background-color: var(--secondary-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            min-width: 300px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
        }
        
        .price-card.featured {
            border: 2px solid var(--accent-color);
        }

        .price-card h3 {
            color: var(--accent-color);
            font-size: 1.8rem;
        }

        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 1rem 0;
        }
        
        .price-card .price span {
            font-size: 1rem;
            color: var(--light-text);
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin: 1.5rem 0;
        }

        .price-card ul li {
            margin-bottom: 0.5rem;
            border-bottom: 1px dashed var(--light-text);
            padding-bottom: 0.5rem;
        }
        
        .price-card ul li:last-child {
            border-bottom: none;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }
        
        .gallery-item img:hover {
            transform: scale(1.05);
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            padding: 2rem;
            text-align: center;
            background-color: var(--secondary-color);
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        
        .slide h3 {
            color: var(--accent-color);
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .slider-dot {
            width: 10px;
            height: 10px;
            background-color: var(--light-text);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--primary-color);
        }

        .faq-item {
            margin-bottom: 1rem;
            background-color: var(--secondary-color);
            padding: 1.5rem;
            border-radius: 10px;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            padding-top: 0;
        }

        .faq-answer p {
            padding-top: 1rem;
            border-top: 1px solid var(--primary-color);
            margin-top: 1rem;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            transition: max-height 0.5s ease-in;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form input {
            padding: 1rem;
            border-radius: 5px;
            border: 1px solid var(--light-text);
            background-color: var(--bg-color);
            color: var(--text-color);
        }
        
        .contact-form button {
            padding: 1rem;
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .contact-form button:hover {
            background-color: #d32f2f;
        }

        .disclaimer {
            background-color: #121212;
            padding: 2rem 0;
            color: var(--light-text);
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid #333;
        }
        
        footer {
            background-color: var(--secondary-color);
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid var(--primary-color);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .footer-nav a {
            margin: 0 1rem;
            color: var(--light-text);
        }
        
        .footer-info p {
            margin: 0.5rem 0;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary-color);
            color: var(--text-color);
            padding: 1rem;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
            z-index: 2000;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .cookie-banner button {
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
        }
        
        .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;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            z-index: 3000;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: var(--secondary-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideInUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: row;
            }
            
            .main-nav {
                flex-direction: column;
                position: fixed;
                top: 70px;
                right: -100%;
                background-color: var(--secondary-color);
                width: 70%;
                height: 100vh;
                padding: 2rem;
                transition: right 0.3s ease-in;
            }

            .main-nav.active {
                right: 0;
            }
            
            .main-nav a {
                margin: 1rem 0;
                font-size: 1.5rem;
            }
            
            .burger {
                display: flex;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .price-card {
                min-width: unset;
                width: 100%;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-nav a {
                display: block;
                margin: 0.5rem 0;
            }
            h1{
                font-size: 2.5em !important; 
            }
            h2{
                font-size: 2em !important;
            }
        }

