* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary: #D32F2F;
            --secondary: #FFD600;
            --dark: #212121;
            --light: #E0E0E0;
            --white: #FFFFFF;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            color: var(--white);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Arial Black', sans-serif;
        }
        
        .nav {
            display: flex;
            list-style: none;
        }
        
        .nav li {
            margin-left: 30px;
        }
        
        .nav a {
            color: var(--white);
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        .nav a:hover {
            color: var(--secondary);
        }
        
        .nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .nav a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger span {
            height: 3px;
            width: 100%;
            background-color: var(--white);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .burger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .burger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(33, 33, 33, 0.8), rgba(33, 33, 33, 0.8)), url('../img/21.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--white);
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 2px;
            text-shadow: 2px 2px 0 var(--primary);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: bold;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--primary);
            color: var(--white);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 3px solid var(--primary);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:hover {
            color: var(--primary);
            z-index: 1;
        }
        
        .btn:before {
            content: "";
            position: absolute;
            background: var(--white);
            bottom: 0;
            left: 0;
            right: 0;
            top: 100%;
            z-index: -1;
            transition: top 0.3s ease;
        }
        
        .btn:hover:before {
            top: 0;
        }
        
        /* Geometric shapes for constructivist style */
        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background-color: var(--primary);
            opacity: 0.3;
            transform: rotate(45deg);
            z-index: 1;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background-color: var(--secondary);
            opacity: 0.3;
            transform: rotate(30deg);
            z-index: 1;
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background-color: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--dark);
            max-width: 700px;
            margin: 20px auto 0;
            font-weight: bold;
        }
        
        /* About Section */
        .about {
            background-color: var(--white);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
            position: relative;
            z-index: 2;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: bold;
            position: relative;
        }
        
        .about-text h3::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 0;
            height: 100%;
            width: 5px;
            background-color: var(--primary);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--dark);
            font-weight: bold;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border: 5px solid var(--primary);
            transform: rotate(2deg);
            box-shadow: 10px 10px 0 rgba(211, 47, 47, 0.2);
            z-index: 1;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .products::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background-color: var(--secondary);
            opacity: 0.2;
            transform: rotate(45deg) translate(50%, -50%);
            z-index: 0;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .product-card {
            background-color: var(--white);
            border: 3px solid var(--dark);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px) rotate(-1deg);
            box-shadow: 10px 10px 0 rgba(33, 33, 33, 0.2);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary) 0%, transparent 70%);
            opacity: 0.3;
            z-index: 1;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
            position: relative;
        }
        
        .product-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 30px;
            height: 5px;
            background-color: var(--primary);
        }
        
        .product-info h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .product-info p {
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        /* Prices Section */
        .prices {
            background-color: var(--white);
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: var(--light);
            border: 3px solid var(--dark);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border-color: var(--primary);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background-color: var(--primary);
            opacity: 0.1;
            transform: rotate(45deg) translate(30px, -70px);
        }
        
        .price-header {
            background-color: var(--dark);
            color: var(--white);
            padding: 20px;
            position: relative;
        }
        
        .price-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary);
        }
        
        .price-body {
            padding: 30px 20px;
        }
        
        .price-body ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-body li {
            padding: 10px 0;
            border-bottom: 2px solid rgba(33, 33, 33, 0.1);
            color: var(--dark);
            font-weight: bold;
            position: relative;
            padding-left: 20px;
        }
        
        .price-body li::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .price-body li:last-child {
            border-bottom: none;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .gallery::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200px;
            height: 200px;
            background-color: var(--primary);
            opacity: 0.1;
            transform: rotate(45deg) translate(-50%, 50%);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            position: relative;
            z-index: 2;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border: 3px solid var(--dark);
            height: 250px;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: rotate(2deg) scale(1.02);
            box-shadow: 10px 10px 0 rgba(33, 33, 33, 0.2);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(33, 33, 33, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay span {
            color: var(--white);
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            text-shadow: 1px 1px 0 var(--primary);
        }
        
        /* Feedback Section */
        .feedback {
            background-color: var(--white);
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 0 20px;
            text-align: center;
        }
        
        .feedback-card {
            background-color: var(--light);
            border: 3px solid var(--dark);
            padding: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .feedback-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--primary);
        }
        
        .feedback-text {
            font-style: italic;
            color: var(--dark);
            margin-bottom: 20px;
            position: relative;
            font-weight: bold;
        }
        
        .feedback-text::before {
            content: '"';
            font-size: 4rem;
            color: var(--primary);
            position: absolute;
            top: -20px;
            left: -20px;
            opacity: 0.3;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid var(--primary);
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: var(--dark);
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .author-info p {
            color: var(--dark);
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .feedback-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--dark);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .feedback-dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background-color: var(--secondary);
            opacity: 0.1;
            transform: rotate(45deg) translate(50%, -50%);
        }
        
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .faq-item {
            background-color: var(--white);
            border: 3px solid var(--dark);
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            transform: translateX(5px);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--white);
            transition: background-color 0.3s ease;
            position: relative;
        }
        
        .faq-question::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 5px;
            background-color: var(--primary);
        }
        
        .faq-question:hover {
            background-color: rgba(211, 47, 47, 0.05);
        }
        
        .faq-question h3 {
            color: var(--dark);
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background-color: var(--primary);
            transition: background-color 0.3s ease;
        }
        
        .faq-icon::before {
            top: 50%;
            left: 0;
            width: 100%;
            height: 3px;
            transform: translateY(-50%);
        }
        
        .faq-icon::after {
            top: 0;
            left: 50%;
            width: 3px;
            height: 100%;
            transform: translateX(-50%);
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: rgba(33, 33, 33, 0.05);
        }
        
        .faq-answer-content {
            padding: 0 20px;
            color: var(--dark);
            font-weight: bold;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        .faq-item.active .faq-answer-content {
            padding: 20px;
        }
        
        /* Contact Form */
        .contact {
            background-color: var(--white);
            padding: 80px 0;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--light);
            padding: 40px;
            border: 3px solid var(--dark);
            position: relative;
            overflow: hidden;
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background-color: var(--primary);
            opacity: 0.1;
            transform: rotate(45deg) translate(30px, -70px);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark);
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--dark);
            background-color: var(--white);
            font-size: 16px;
            font-weight: bold;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .form-submit {
            text-align: center;
            margin-top: 20px;
        }
        
        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: var(--white);
            padding: 40px;
            border: 3px solid var(--primary);
            text-align: center;
            max-width: 500px;
            width: 90%;
            transform: scale(0.8);
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .popup.active .popup-content {
            transform: scale(1);
        }
        
        .popup-content h3 {
            color: var(--dark);
            margin-bottom: 20px;
            font-size: 1.8rem;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .popup-content p {
            color: var(--dark);
            margin-bottom: 30px;
            font-weight: bold;
        }
        
        .popup-close {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-transform: uppercase;
        }
        
        .popup-close:hover {
            background-color: var(--dark);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: var(--dark);
            color: var(--white);
            padding: 20px;
            border: 3px solid var(--primary);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
        }
        
        .cookie-text p {
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .cookie-text a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: bold;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .cookie-accept {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .cookie-accept:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        .cookie-reject {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .cookie-reject:hover {
            background-color: var(--white);
            color: var(--dark);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 50px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--primary);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary);
            text-transform: uppercase;
            font-weight: bold;
            position: relative;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-column ul li::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--primary);
        }
        
        .footer-column ul li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: bold;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 2px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: bold;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: rgba(33, 33, 33, 0.05);
            padding: 20px;
            border: 2px solid var(--primary);
            margin: 50px auto;
            max-width: 800px;
            text-align: center;
            color: var(--dark);
            font-size: 0.9rem;
            font-weight: bold;
            position: relative;
        }
        
        .disclaimer::before {
            content: '!';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                transform: none;
            }
        }
        
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            }
            
            .nav.active {
                transform: translateY(0);
            }
            
            .nav li {
                margin: 10px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .feedback-controls {
                margin-top: 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

