/* Soviet Constructivism Style */
        :root {
            --primary-color: #D42626;
            --secondary-color: #1A1A1A;
            --accent-color: #F2F2F2;
            --text-color: #333333;
            --light-gray: #E0E0E0;
            --dark-gray: #555555;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: var(--accent-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: var(--secondary-color);
            color: var(--accent-color);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--accent-color);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url('../img/20.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--accent-color);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 2px;
            color: var(--primary-color);
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--accent-color);
            padding: 12px 30px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 1px;
            font-size: 16px;
        }

        .btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--accent-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            text-transform: uppercase;
            color: var(--secondary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 16px;
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border: 5px solid var(--primary-color);
        }

        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: var(--light-gray);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .product-card {
            background-color: var(--accent-color);
            border: 2px solid var(--secondary-color);
            padding: 25px;
            text-align: center;
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 20px;
            border: 3px solid var(--primary-color);
        }

        .product-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary-color);
            text-transform: uppercase;
        }

        .product-card p {
            margin-bottom: 20px;
        }

        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: var(--accent-color);
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .price-card {
            background-color: var(--light-gray);
            border: 2px solid var(--secondary-color);
            padding: 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s;
        }

        .price-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .price-card:hover {
            transform: translateY(-10px);
        }

        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--secondary-color);
            text-transform: uppercase;
        }

        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--primary-color);
            margin: 20px 0;
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .price-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid var(--dark-gray);
        }

        .price-card .btn {
            width: 100%;
        }

        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: var(--light-gray);
        }

        .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;
            border: 3px solid var(--primary-color);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: var(--accent-color);
        }

        .feedback-slider {
            position: relative;
            margin-top: 50px;
            overflow: hidden;
        }

        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .feedback-item {
            min-width: 100%;
            padding: 0 20px;
            text-align: center;
        }

        .feedback-item img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--primary-color);
        }

        .feedback-item p {
            font-style: italic;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .feedback-item h4 {
            font-size: 18px;
            color: var(--secondary-color);
        }

        .feedback-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .feedback-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--dark-gray);
            margin: 0 5px;
            cursor: pointer;
        }

        .feedback-dot.active {
            background-color: var(--primary-color);
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: var(--light-gray);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--dark-gray);
        }

        .faq-question {
            background-color: var(--secondary-color);
            color: var(--accent-color);
            padding: 15px 20px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:after {
            content: "+";
            font-size: 24px;
        }

        .faq-question.active:after {
            content: "-";
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }

        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: var(--accent-color);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--light-gray);
            padding: 30px;
            border: 2px solid var(--secondary-color);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--secondary-color);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--dark-gray);
            font-size: 16px;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        /* Disclaimer */
        .disclaimer {
            background-color: var(--secondary-color);
            color: var(--accent-color);
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
        }

        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: var(--accent-color);
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--dark-gray);
            font-size: 14px;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary-color);
            color: var(--accent-color);
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-text {
            max-width: 80%;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 8px 16px;
            background-color: var(--primary-color);
            color: var(--accent-color);
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .cookie-btn:hover {
            background-color: var(--dark-gray);
        }

        .cookie-btn.decline {
            background-color: transparent;
            border: 1px solid var(--accent-color);
        }

        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1002;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: var(--accent-color);
            padding: 30px;
            border-radius: 5px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 3px solid var(--primary-color);
            transform: scale(0.7);
            transition: transform 0.3s;
        }

        .popup.active .popup-content {
            transform: scale(1);
        }

        .popup-close {
            margin-top: 20px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--secondary-color);
                flex-direction: column;
                padding: 20px;
            }

            nav ul.active {
                display: flex;
            }

            nav ul li {
                margin: 10px 0;
            }

            .burger-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .about-content {
                flex-direction: column;
            }

            .price-card.featured {
                transform: scale(1);
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-text {
                max-width: 100%;
                margin-bottom: 15px;
            }
        }

