 /* Глобальные стили */
        :root {
            --primary: #7A3EED;
            --secondary: #FF5E7D;
            --accent: #00F0B5;
            --dark: #1A1A2E;
            --light: #F9F7F0;
            --retro-blue: #4D8BFF;
            --retro-pink: #FF6B9D;
            --font-main: 'Courier New', monospace;
            --font-heading: 'Brush Script MT', cursive;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-main);
            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: linear-gradient(90deg, var(--primary), var(--secondary));
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid var(--accent);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--light);
            text-decoration: none;
            text-shadow: 2px 2px 0 var(--retro-pink);
            letter-spacing: 2px;
        }
        
        /* Бургер-меню */
        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            z-index: 1001;
        }
        
        .burger-line {
            width: 30px;
            height: 3px;
            background-color: var(--light);
            transition: all 0.3s ease;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 5px 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--accent);
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 10px;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: calc(100% - 20px);
        }
        
        /* Основное содержимое */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Герой секция */
        .hero {
            height: 80vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), url('../img/1.jpg') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
            margin-bottom: 80px;
            border-radius: 0 0 20px 20px;
        }
        
        .hero-content {
            max-width: 600px;
            padding: 40px;
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 15px;
            border: 2px solid var(--accent);
            box-shadow: 0 0 30px rgba(0, 240, 181, 0.3);
            transform: skewX(-5deg);
            position: relative;
            z-index: 1;
        }
        
        .hero-content::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px dashed var(--retro-pink);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.5;
        }
        
        .hero h1 {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            color: var(--accent);
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 3px 3px 0 var(--retro-pink);
            transform: skewX(5deg);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            transform: skewX(5deg);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary);
            color: var(--light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transform: skewX(5deg);
            box-shadow: 0 5px 15px rgba(255, 94, 125, 0.4);
        }
        
        .btn:hover {
            background-color: var(--retro-pink);
            transform: translateY(-3px) skewX(5deg);
            box-shadow: 0 8px 20px rgba(255, 94, 125, 0.6);
        }
        
        .btn-primary {
            background-color: var(--accent);
            color: var(--dark);
            margin-right: 15px;
            box-shadow: 0 5px 15px rgba(0, 240, 181, 0.4);
        }
        
        .btn-primary:hover {
            background-color: var(--retro-blue);
            box-shadow: 0 8px 20px rgba(0, 240, 181, 0.6);
        }
        
        /* Анимация пузырьков */
        .bubble {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
        }
        
        /* Секция "О продукте" */
        .about {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/1.jpg') no-repeat center center/cover;
            opacity: 0.1;
            z-index: -1;
        }
        
        .section-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 3px;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background-color: rgba(122, 62, 237, 0.1);
            border-radius: 15px;
            border: 1px solid var(--primary);
            box-shadow: 0 10px 30px rgba(122, 62, 237, 0.2);
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: var(--retro-blue);
            margin-bottom: 20px;
        }
        
        .about-text ul {
            list-style-type: none;
            margin-top: 20px;
        }
        
        .about-text li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        
        .about-text li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            perspective: 1000px;
        }
        
        .tea-img {
            width: 100%;
            max-width: 500px;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover .tea-img {
            transform: rotateY(15deg) rotateX(5deg) translateY(-10px);
        }
        
        /* Секция преимуществ */
        .benefits {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(122, 62, 237, 0.1), rgba(0, 240, 181, 0.1));
            position: relative;
            overflow: hidden;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .benefit-card {
            background-color: rgba(26, 26, 46, 0.7);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid var(--secondary);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 60%, rgba(255, 94, 125, 0.1));
            z-index: -1;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 94, 125, 0.2);
            border-color: var(--accent);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .benefit-card h3 {
            font-size: 1.5rem;
            color: var(--retro-blue);
            margin-bottom: 15px;
        }
        
        /* Секция состава */
        .composition {
            padding: 80px 0;
            background: url('https://images.unsplash.com/photo-1516594798947-e65505dbb29d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            position: relative;
            color: var(--light);
        }
        
        .composition::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 26, 46, 0.9);
        }
        
        .composition .container {
            position: relative;
            z-index: 1;
        }
        
        .ingredients {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: 50px;
        }
        
        .ingredient {
            flex: 1;
            min-width: 200px;
            max-width: 300px;
            background-color: rgba(122, 62, 237, 0.2);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid var(--primary);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .ingredient:hover {
            background-color: rgba(122, 62, 237, 0.4);
            transform: scale(1.05);
        }
        
        .ingredient-img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 15px;
            border: 3px solid var(--accent);
        }
        
        .ingredient h3 {
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        /* Секция отзывов */
        .testimonials {
            padding: 80px 0;
            background-color: var(--light);
            color: var(--dark);
        }
        
        .testimonials .section-title {
            color: var(--primary);
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 50px auto 0;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial {
            min-width: 100%;
            padding: 30px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .testimonial::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(122, 62, 237, 0.1);
            font-family: var(--font-heading);
            line-height: 1;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid var(--primary);
        }
        
        .author-info h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary);
            opacity: 0.5;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            opacity: 1;
            transform: scale(1.2);
        }
        
        /* Секция цен */
        .pricing {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(0, 240, 181, 0.1), rgba(122, 62, 237, 0.1));
        }
        
        .pricing-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: 50px;
        }
        
        .pricing-card {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            background-color: var(--light);
            color: var(--dark);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        .pricing-card.popular {
            border: 3px solid var(--accent);
        }
        
        .popular-badge {
            position: absolute;
            top: 15px;
            right: -30px;
            background-color: var(--secondary);
            color: white;
            padding: 5px 30px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .pricing-card h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .price span {
            font-size: 1rem;
            color: var(--dark);
        }
        
        .pricing-features {
            list-style-type: none;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
        }
        
        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }
        
        /* Секция FAQ */
        .faq {
            padding: 80px 0;
            background-color: var(--dark);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: rgba(122, 62, 237, 0.1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(122, 62, 237, 0.2);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background-color: rgba(26, 26, 46, 0.5);
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Секция заказа */
        .order {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--light);
        }
        
        .order .section-title {
            color: var(--light);
        }
        
        .order-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
        }
        
        .order-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .order-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .order-form {
            flex: 1;
            min-width: 300px;
            background-color: var(--light);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            color: var(--dark);
        }
        
        .order-form h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: var(--font-main);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(122, 62, 237, 0.2);
        }
        
        .form-submit {
            width: 100%;
            padding: 15px;
            background-color: var(--accent);
            color: var(--dark);
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-submit:hover {
            background-color: var(--retro-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Секция научных исследований */
        .research {
            padding: 80px 0;
            background-color: var(--light);
            color: var(--dark);
        }
        
        .research .section-title {
            color: var(--primary);
        }
        
        .research-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .research-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .research-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        .research-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .research-content {
            padding: 25px;
        }
        
        .research-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .research-card p {
            margin-bottom: 20px;
        }
        
        .research-link {
            color: var(--secondary);
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
        }
        
        .research-link::after {
            content: '→';
            margin-left: 5px;
            transition: all 0.3s ease;
        }
        
        .research-link:hover::after {
            margin-left: 10px;
        }
        
        /* Попап */
        .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;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: var(--light);
            color: var(--dark);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            position: relative;
            transform: scale(0.8);
            transition: all 0.3s ease;
        }
        
        .popup.active .popup-content {
            transform: scale(1);
        }
        
        .popup h2 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
            transition: all 0.3s ease;
        }
        
        .popup-close:hover {
            color: var(--secondary);
            transform: rotate(90deg);
        }
        
        /* Уведомление о cookies */
        .cookie-notice {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--dark);
            color: var(--light);
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 1000;
            max-width: 90%;
            border: 1px solid var(--primary);
        }
        
        .cookie-notice p {
            margin: 0;
        }
        
        .cookie-btn {
            background-color: var(--accent);
            color: var(--dark);
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        
        .cookie-btn:hover {
            background-color: var(--retro-blue);
        }
        
        /* Футер */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 60px 0 20px;
            border-top: 3px solid var(--primary);
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-col {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-col h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style-type: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .contact-icon {
            color: var(--accent);
            font-size: 1.2rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--light);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            margin-bottom: 10px;
        }
        
        .footer-links-bottom {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .footer-links-bottom a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links-bottom a:hover {
            color: var(--accent);
        }
        
        /* Дисклеймер */
        .disclaimer {
            padding: 30px 0;
            background-color: rgba(26, 26, 46, 0.8);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            text-align: center;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .burger-menu {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--dark);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transition: all 0.5s ease;
                z-index: 1000;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
                border-left: 3px solid var(--accent);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .hero {
                height: auto;
                padding: 100px 0;
            }
            
            .hero-content {
                transform: none;
            }
            
            .hero h1, .hero p, .btn {
                transform: none;
            }
            
            .btn {
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }
            
            .btn-primary {
                margin-right: 0;
            }
            
            .about-content, .order-container {
                flex-direction: column;
            }
            
            .about-text, .about-image, .order-image, .order-form {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .pricing-card {
                min-width: 100%;
            }
            
            .cookie-notice {
                flex-direction: column;
                text-align: center;
                bottom: 10px;
                width: 95%;
            }
        }