/* Загальні стилі */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #2E7D32;
    --primary-light: #81C784;
    --secondary-color: #FF9800;
    --secondary-dark: #F57C00;
    --secondary-light: #FFB74D;
    --text-color: #333;
    --text-light: #666;
    --background-color: #f8f9fa;
    --white: #ffffff;
    --gray-light: #e9ecef;
    --gray: #ced4da;
    --black: #121212;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rufina', serif;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--black);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
}

section {
    padding: 4rem 2rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Хвилясті розділювачі */
.wave-top, .wave-bottom, .hero-wave-top, .hero-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.wave-top {
    top: 0;
}

.wave-bottom {
    bottom: 0;
}

.wave-top svg, .wave-bottom svg, .hero-wave-top svg, .hero-wave-bottom svg {
    width: 100%;
    height: 100px;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn:active {
    transform: translateY(2px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    box-shadow: var(--shadow-md);
    color: var(--white);
    background-position: right center;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-md);
    color: var(--white);
    background-position: right center;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Хедер і навігація */
header {
    padding: 1rem 2rem;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.logo span {
    color: var(--primary-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    position: relative;
    padding: 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover .nav-icon {
    transform: translateY(-5px);
}

.nav-icon {
    margin-bottom: 0.25rem;
    transition: transform 0.3s ease;
}

/* Герой секція */
.hero-section {
    background-color: var(--background-color);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    text-align: right;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-wave-top {
    top: 0;
}

.hero-wave-bottom {
    bottom: 0;
}

/* Секція програм */
.programs-section {
    background-color: var(--white);
    position: relative;
}

.program-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    margin-bottom: 1.5rem;
    text-align: center;
}

.program-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.program-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.program-features {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.program-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
    padding-left: 20px;
}

.program-features li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.program-card .btn {
    width: 100%;
}

/* Секція меню */
.menu-section {
    background-color: var(--background-color);
    position: relative;
}

.weekly-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-day {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: var(--transition);
}

.menu-day:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-day h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.menu-day h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.meal {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--gray-light);
}

.meal:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.meal-time {
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.menu-day img {
    margin-top: 1rem;
    border-radius: var(--border-radius-md);
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Секція сезонних продуктів */
.seasonal-section {
    background-color: var(--white);
    position: relative;
}

.seasonal-calendar {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.season {
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: var(--transition);
}

.season:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.season h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.season-products {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.product-icon {
    margin-bottom: 0.5rem;
}

.product span {
    font-weight: 700;
}

.season img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
}

/* Секція інгредієнту дня */
.ingredient-section {
    background-color: var(--background-color);
    position: relative;
}

.ingredient-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ingredient-image {
    flex: 1;
    min-width: 300px;
}

.ingredient-image img {
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.ingredient-info {
    flex: 1;
    min-width: 300px;
}

.ingredient-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ingredient-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.ingredient-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fact {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

.fact-icon {
    margin-right: 0.5rem;
}

.ingredient-usage h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Секція консультацій */
.consultation-section {
    background-color: var(--white);
    position: relative;
}

.consultation-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.consultation-image {
    flex: 1;
    min-width: 300px;
}

.consultation-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

.consultation-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.consultation-form {
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius-sm);
    font-family: 'PT Sans', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.consultation-form .btn {
    width: 100%;
}

/* Секція переваг */
.benefits-section {
    background-color: var(--background-color);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
}

/* Секція відгуків */
.testimonials-section {
    background-color: var(--white);
    position: relative;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    position: absolute;
    top: -15px;
    left: 10px;
    color: var(--primary-light);
    opacity: 0.2;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-text {
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
}

/* Футер */
footer {
    background-color: var(--black);
    color: var(--white);
    position: relative;
    padding-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 0;
}

.footer-logo span {
    color: var(--primary-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    margin-top: 10px;
    border-radius: 2px;
}

.footer-section p {
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'PT Sans', sans-serif;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: var(--gray);
}

.footer-form input:focus,
.footer-form textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-form .btn {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
}

/* Адаптивність */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem;
    }
    
    .hero-text {
        margin-bottom: 3rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .ingredient-showcase {
        flex-direction: column;
        text-align: center;
    }
    
    .ingredient-facts {
        justify-content: center;
    }
    
    .consultation-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 1.5rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wave-top svg, .wave-bottom svg, .hero-wave-top svg, .hero-wave-bottom svg {
        height: 50px;
    }
    
    .nav-link span {
        display: none;
    }
    
    .main-nav ul {
        gap: 0.75rem;
    }
}

@media (max-width: 375px) {
    section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-text h2 {
        font-size: 1.75rem;
    }
    
    .program-card, .menu-day, .season, .testimonial-card {
        min-width: 100%;
    }
}

/* Стилі для сторінок політик */
.policy-section {
    background-color: var(--white);
    padding: 6rem 2rem 4rem;
    position: relative;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.policy-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.policy-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem auto;
    border-radius: 2px;
}

.policy-content {
    margin-bottom: 2rem;
}

.policy-section-content {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.policy-section-content:last-child {
    border-bottom: none;
}

.policy-section-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.policy-section-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.policy-list {
    list-style-type: none;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-list li {
    margin-bottom: 0.5rem;
    position: relative;
}

.policy-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -1.5rem;
    font-size: 1.2rem;
}

.policy-footer {
    margin-top: 2rem;
    font-style: italic;
    text-align: center;
    color: var(--text-light);
}

.policy-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-type {
    margin-bottom: 1.5rem;
}

.cookie-table-container {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--gray);
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    border: 1px solid var(--gray);
    text-align: left;
}

.cookie-table th {
    background-color: var(--primary-light);
    color: var(--white);
    font-weight: 700;
}

.cookie-table tr:nth-child(even) {
    background-color: var(--gray-light);
}

/* Стилі для сторінки подяки */
.thankyou-section {
    background-color: var(--white);
    padding: 6rem 2rem 4rem;
    position: relative;
}

.thankyou-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.thankyou-icon {
    margin-bottom: 1.5rem;
}

.thankyou-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thankyou-message {
    margin-bottom: 2rem;
}

.thankyou-message p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.next-steps {
    margin-bottom: 2rem;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-dark);
}

.next-steps-list {
    list-style-type: none;
}

.next-steps-list li {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--gray-light);
}

.next-steps-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.thankyou-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Адаптивність для сторінок політик та подяки */
@media (max-width: 768px) {
    .policy-container, .thankyou-container {
        padding: 1.5rem;
    }
    
    .policy-title, .thankyou-title {
        font-size: 2rem;
    }
    
    .policy-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .policy-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .policy-section, .thankyou-section {
        padding: 5rem 1rem 3rem;
    }
    
    .policy-title, .thankyou-title {
        font-size: 1.75rem;
    }
    
    .step-icon {
        margin-right: 0.5rem;
    }
    
    .thankyou-navigation {
        flex-direction: column;
    }
}