/* Base Styles */
:root {
    --primary-color: #1E5631; /* Темно-зелений */
    --secondary-color: #7D1128; /* Ягідно-вишневий */
    --accent-color: #316B42; /* Зелений базилік */
    --light-bg: #f3f7f0; /* Світло-екологічний фон */
    --text-color: #333333; /* Основний текст */
    --light-text: #ffffff; /* Світлий текст */
    --font-heading: 'Amatic SC', cursive;
    --font-body: 'Poppins', sans-serif;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

h3 {
    font-size: 2.2rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

section {
    padding: 5rem 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-align: center;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.primary-btn:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(30, 86, 49, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(30, 86, 49, 0.3);
}

.program-btn {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
}

.program-btn:hover {
    background-color: #941535;
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 17, 40, 0.3);
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    margin-right: 15px;
}

.logo-container h1 {
    font-size: 2rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 5% 6rem;
    background: url('images/hero-bg.webp') no-repeat center center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 86, 49, 0.9), rgba(49, 107, 66, 0.8));
    z-index: 1;
}

.hero-content, .hero-image {
    position: relative;
    z-index: 2;
    width: 48%;
}

.hero-content {
    color: var(--light-text);
}

.hero-content h2 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-content h2::after {
    left: 0;
    transform: none;
    background: var(--light-text);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: rotate(0deg);
}

/* Programs Section */
.programs {
    background-color: #ffffff;
}

.programs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.program-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.program-image {
    height: 240px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-content {
    padding: 1.5rem;
}

.program-content h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.program-content p {
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits {
    background-color: var(--light-bg);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.benefit-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Portion Guide Section */
.portion-guide {
    background-color: #ffffff;
}

.portion-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.portion-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.portion-image, .portion-content {
    flex: 1;
    min-width: 300px;
}

.portion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portion-content {
    padding: 2rem;
}

.portion-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.portion-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portion-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.portion-icon {
    flex-shrink: 0;
}

.portion-list li strong {
    font-weight: 600;
    color: var(--primary-color);
}

/* Myths Section */
.myths {
    background-color: var(--light-bg);
}

.myths-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.myth-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 2rem;
}

.myth-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.myth-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.myth-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Diets Comparison Section */
.diets-comparison {
    background-color: #ffffff;
}

.table-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    overflow-x: auto;
}

.diet-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.diet-table th, .diet-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.diet-table th {
    background-color: var(--primary-color);
    color: var(--light-text);
    font-weight: 600;
}

.diet-table tr:nth-child(even) {
    background-color: var(--light-bg);
}

.diet-table tr:hover {
    background-color: #e8f5e9;
}

.diet-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* Schedule Section */
.schedule {
    background-color: var(--light-bg);
}

.calendar-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.season {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.season:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.season h3 {
    font-size: 2rem;
    padding: 1.5rem;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--light-text);
    margin-bottom: 0;
}

.winter h3 {
    background-color: #4b6cb7;
}

.spring h3 {
    background-color: #56ab2f;
}

.summer h3 {
    background-color: #ff7e5f;
}

.autumn h3 {
    background-color: #b06ab3;
}

.season-activities {
    padding: 1.5rem;
}

.activity {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #e0e0e0;
}

.activity:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.activity-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: #ffffff;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.testimonial-content p::before, .testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--secondary-color);
    position: absolute;
}

.testimonial-content p::before {
    top: -10px;
    left: -10px;
}

.testimonial-content p::after {
    bottom: -20px;
    right: -10px;
}

/* Contacts Section */
.contacts {
    background-color: var(--light-bg);
}

.contacts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form h3, .contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-icon {
    margin-right: 1rem;
    background-color: var(--light-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #e0e0e0;
}

.contact-hours h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 4rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-item {
    margin-bottom: 2rem;
}

.footer-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--light-text);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.logo-section p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-item ul li {
    margin-bottom: 0.7rem;
}

.footer-item ul li a {
    color: var(--light-text);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-item ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.newsletter form .form-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter input {
    flex-grow: 1;
    padding: 0.6rem;
    border-radius: var(--border-radius);
    border: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.gallery-grid img {
    border-radius: 4px;
    transition: var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright p {
    margin-bottom: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 3.5rem;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .hero-image {
        margin-top: 3rem;
        text-align: center;
    }
    
    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .wave-divider svg {
        height: 80px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero {
        padding-top: 12rem;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .portion-item {
        flex-direction: column;
    }
    
    .portion-image, .portion-content {
        width: 100%;
    }
    
    .wave-divider svg {
        height: 60px;
    }
    
    .contacts-container {
        flex-direction: column;
    }
    
    .contact-form, .contact-info {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .logo-container h1 {
        font-size: 1.5rem;
    }
    
    .main-nav ul {
        gap: 0.8rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
    
    .program-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .wave-divider svg {
        height: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 375px) {
    header {
        padding: 0.8rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .logo-container h1 {
        font-size: 1.3rem;
    }
    
    .main-nav {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 0.5rem;
    }
    
    .main-nav ul {
        width: max-content;
        padding: 0 0.5rem;
    }
    
    .main-nav a {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .hero {
        padding-top: 10rem;
        min-height: 80vh;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .program-card, .benefit-item, .myth-item, .testimonial-card, .season {
        transform: none !important;
    }
    
    .portion-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .portion-icon {
        margin-bottom: 0.5rem;
    }
    
    .form-group button {
        width: 100%;
    }
    
    .newsletter form .form-group {
        flex-direction: column;
    }
}

/* Unique Elements & Animations */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Custom animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waveEffect {
    0% {
        transform: translateX(-100%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

/* Apply animations */
.logo:hover {
    animation: pulse 1.5s infinite;
}

.benefit-icon svg,
.myth-icon svg,
.activity-icon svg,
.portion-icon svg,
.info-icon svg {
    transition: transform 0.3s ease;
}

.benefit-icon svg:hover,
.myth-icon svg:hover,
.activity-icon svg:hover,
.portion-icon svg:hover,
.info-icon svg:hover {
    transform: rotate(10deg);
}

.program-card,
.benefit-item,
.myth-item,
.testimonial-card,
.season {
    animation: fadeIn 0.8s ease-out forwards;
}

.wave-divider svg path {
    animation: waveEffect 20s linear infinite;
}

/* Unique Hero Section with wavy lines */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23ffffff'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23ffffff'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom center/cover;
    z-index: 3;
}

/* Unique Footer Layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: 
        "logo links programs"
        "newsletter gallery policies";
    gap: 2rem;
}

.logo-section {
    grid-area: logo;
}

.quick-links {
    grid-area: links;
}

.program-links {
    grid-area: programs;
}

.newsletter {
    grid-area: newsletter;
}

.gallery {
    grid-area: gallery;
}

.policies {
    grid-area: policies;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: 
            "logo links"
            "programs newsletter"
            "gallery policies";
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "logo"
            "links"
            "programs"
            "newsletter"
            "gallery"
            "policies";
    }
}

/* Custom Button Hover Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.3s, height 0.3s;
    transform: translate(-50%, -50%);
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Organic Shapes for Decorative Elements */
.program-card::before,
.benefit-item::before,
.myth-item::before,
.testimonial-card::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    opacity: 0.1;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    z-index: -1;
}

.program-card::before {
    top: -20px;
    right: -20px;
}

.benefit-item::before {
    bottom: -20px;
    left: -20px;
}

.myth-item::before {
    top: -20px;
    left: -20px;
}

.testimonial-card::before {
    bottom: -20px;
    right: -20px;
}

/* Steam-like wavy lines */
.portion-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 60'%3E%3Cpath d='M10,60 C15,50 5,40 10,30 C15,20 5,10 10,0' stroke='%23316B42' stroke-width='2' fill='none' /%3E%3Cpath d='M20,60 C25,50 15,40 20,30 C25,20 15,10 20,0' stroke='%23316B42' stroke-width='2' fill='none' stroke-dasharray='2,2' /%3E%3Cpath d='M30,60 C35,50 25,40 30,30 C35,20 25,10 30,0' stroke='%23316B42' stroke-width='2' fill='none' /%3E%3C/svg%3E");
    z-index: 1;
    opacity: 0.7;
    animation: fadeIn 2s ease infinite alternate;
}

/* Leaf and fruit shapes */
.benefits::before,
.myths::before,
.testimonials::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.benefits::before {
    top: 50px;
    left: 5%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23316B42' d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z'/%3E%3C/svg%3E");
    transform: rotate(45deg);
}

.myths::before {
    bottom: 70px;
    right: 5%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%237D1128' d='M7,2C4,2 2,5 2,8C2,10.11 3,13 4,14C5,15 6,16 6,16C6,16 7.11,15 8,14C9,13 10,11 10,8C10,5 9,2 7,2M16,2C14,2 13,5 13,8C13,11 14,13 15,14C16,15 17,16 17,16C17,16 18,15 19,14C20,13 21,10.11 21,8C21,5 19,2 16,2M7,4C8,4 8,6 8,8C8,10 7,12 6,13C5,12 4,10 4,8C4,6 6,4 7,4M16,4C17,4 18,6 18,8C18,10 17,12 16,13C15,12 14,10 14,8C14,6 15,4 16,4M7,6A1,1 0 0,0 6,7A1,1 0 0,0 7,8A1,1 0 0,0 8,7A1,1 0 0,0 7,6M16,6A1,1 0 0,0 15,7A1,1 0 0,0 16,8A1,1 0 0,0 17,7A1,1 0 0,0 16,6M12,10C10,10 9,11 9,12.5C9,14 10,15 12,15C14,15 15,14 15,12.5C15,11 14,10 12,10M12,12C12.5,12 13,12.25 13,12.5C13,12.75 12.5,13 12,13C11.5,13 11,12.75 11,12.5C11,12.25 11.5,12 12,12Z'/%3E%3C/svg%3E");
}

.testimonials::before {
    top: 100px;
    right: 10%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23316B42' d='M20,10C22,13 17,22 15,22C13,22 13,21 12,21C11,21 11,22 9,22C7,22 2,13 4,10C6,7 9,7 11,8V5C5.38,8.07 4.11,3.78 4.11,3.78C4.11,3.78 6.77,0.19 11,5V3H13V8C15,7 18,7 20,10Z'/%3E%3C/svg%3E");
}