@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --accent-color: #f1c40f;
            --background-color: #ecf0f1;
            --text-color: #34495e;
            --light-text-color: #ffffff;
            --font-family-main: 'Roboto', sans-serif;
            --font-family-heading: 'Oswald', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family-main);
            color: var(--text-color);
            background-color: var(--background-color);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            padding: 1rem 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-family-heading);
            font-size: 2rem;
            color: var(--light-text-color);
            text-decoration: none;
            text-transform: uppercase;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            color: var(--light-text-color);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--light-text-color);
            transition: all 0.3s ease;
        }

        main {
            padding-top: 80px;
        }

        section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        h1, h2, h3 {
            font-family: var(--font-family-heading);
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 20px;
        }

        h2 {
            font-size: 2.5rem;
        }

        p {
            font-size: 1rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--secondary-color);
            color: var(--light-text-color);
            text-decoration: none;
            font-weight: 700;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            text-transform: uppercase;
        }

        .btn:hover {
            background-color: #c0392b;
        }

        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/06.webp') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light-text-color);
            position: relative;
            background-attachment: fixed;
        }

        .hero h1 {
            font-size: 4rem;
            color: var(--light-text-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInDown 1s ease-in-out;
        }

        .hero p {
            font-size: 1.5rem;
            color: var(--light-text-color);
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-in-out 0.5s;
        }
        
        .hero .btn {
            animation: fadeIn 1s ease-in-out 1s;
        }

        #about {
            background-color: var(--light-text-color);
            padding: 80px 0;
        }

        #about .container {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about-text {
            flex: 1;
            text-align: left;
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 1s ease, transform 1s ease;
        }
        .about-text.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .about-text h2, .about-text h3 {
            text-align: left;
        }

        .about-image {
            flex: 1;
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 1s ease, transform 1s ease;
        }
        .about-image.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        #products {
            background-color: var(--background-color);
            padding: 80px 0;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: var(--light-text-color);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
            padding-bottom: 20px;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .product-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .product-card h3 {
            margin: 20px 0 10px;
        }
        
        .product-card p {
            font-size: 0.9rem;
            margin-bottom: 20px;
            padding: 0 20px;
        }

        #prices {
            background-color: var(--primary-color);
            color: var(--light-text-color);
            padding: 80px 0;
        }
        
        #prices h2 {
            color: var(--light-text-color);
        }

        .price-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .price-card {
            background-color: var(--light-text-color);
            color: var(--text-color);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            padding: 40px;
            text-align: center;
            width: 300px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: scale(0.9);
            animation: scaleIn 0.5s ease forwards;
        }

        .price-card.visible {
            opacity: 1;
            transform: scale(1);
        }

        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .price-card .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .price-card ul li {
            margin-bottom: 10px;
        }

        #gallery {
            padding: 80px 0;
            background-color: var(--light-text-color);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        #feedback {
            background-color: var(--background-color);
            padding: 80px 0;
        }

        .feedback-slider-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
        }

        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-slide {
            min-width: 100%;
            padding: 20px;
            text-align: center;
        }

        .feedback-card {
            background-color: var(--light-text-color);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .feedback-card .avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .feedback-card h3 {
            margin-bottom: 5px;
            color: var(--secondary-color);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .prev, .next {
            background-color: var(--primary-color);
            color: var(--light-text-color);
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .prev:hover, .next:hover {
            background-color: var(--secondary-color);
        }

        #faq {
            background-color: var(--light-text-color);
            padding: 80px 0;
        }

        .faq-item {
            border-bottom: 1px solid #ccc;
            padding: 20px 0;
            cursor: pointer;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary-color);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
            padding-top: 0;
        }
        .faq-answer p {
            text-align: left;
            margin: 10px 0 0;
            max-width: 100%;
        }

        #contact {
            background-color: var(--background-color);
            padding: 80px 0;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        .form-submit-btn {
            width: 100%;
        }

        footer {
            background-color: var(--primary-color);
            color: var(--light-text-color);
            padding: 40px 0 20px;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-links {
            list-style: none;
            display: flex;
            gap: 20px;
        }
        
        .footer-links a {
            color: var(--light-text-color);
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }

        .footer-contacts {
            text-align: right;
        }
        
        .footer-contacts p {
            margin: 0;
            text-align: right;
        }

        .disclaimer {
            font-size: 0.8rem;
            color: #bdc3c7;
            margin-top: 20px;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary-color);
            color: var(--light-text-color);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            z-index: 1001;
            width: 90%;
            max-width: 600px;
        }

        .cookie-banner p {
            margin: 0;
            text-align: left;
            font-size: 0.9rem;
        }

        .cookie-banner .btn {
            white-space: nowrap;
            background-color: var(--secondary-color);
        }

        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }
        
        .popup-content {
            background-color: var(--light-text-color);
            color: var(--text-color);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            max-width: 400px;
            position: relative;
        }
        
        .popup-content h3 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .popup-content .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }


        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                text-align: center;
                padding: 20px 0;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 10px 0;
            }

            .burger-menu {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }

            #about .container {
                flex-direction: column;
                text-align: center;
            }

            .about-text, .about-image {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .footer-contacts {
                text-align: center;
            }
        }

