/* 
 * Main Stylesheet for Wondrivia.shop
 * Theme: Nutrition - Healthy Habits
 */

/* ======= GLOBAL STYLES ======= */
:root {
    /* Primary Color Palette */
    --primary-green: #4CAF50;
    --primary-dark-green: #2E7D32;
    --primary-light-green: #8BC34A;
    --accent-yellow: #FFC107;
    --accent-orange: #FF9800;
    
    /* Neutral Colors */
    --neutral-white: #FFFFFF;
    --neutral-off-white: #F5F5F5;
    --neutral-light-grey: #EEEEEE;
    --neutral-grey: #9E9E9E;
    --neutral-dark-grey: #616161;
    --neutral-black: #212121;
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--neutral-dark-grey);
    background-color: var(--neutral-white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--neutral-black);
}

h1 { font-size: 4.8rem; }
h2 { font-size: 3.6rem; }
h3 { font-size: 2.4rem; }
h4 { font-size: 2rem; }

p {
    margin-bottom: 1.6rem;
}

a {
    color: var(--primary-dark-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-green);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 8rem 0;
    position: relative;
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 0.4rem;
    background: var(--primary-light-green);
    margin: 1rem auto 0;
    border-radius: 2rem;
}

.subtitle {
    font-size: 1.8rem;
    color: var(--neutral-grey);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    border-radius: 5rem;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.6rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background-color: var(--neutral-light-grey);
    color: var(--neutral-dark-grey);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--neutral-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark-green);
    color: var(--neutral-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-dark-green);
    border: 2px solid var(--primary-dark-green);
}

.btn-secondary:hover {
    background-color: var(--primary-dark-green);
    color: var(--neutral-white);
}

.btn-large {
    padding: 1.5rem 3.2rem;
    font-size: 1.8rem;
}

.full-width {
    width: 100%;
}

/* ======= HEADER & NAVIGATION ======= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--neutral-white);
    padding: 2rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 5rem;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 3rem;
}

.nav-list a {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--neutral-dark-grey);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a:focus::after {
    width: 100%;
}

.nav-list a.btn {
    padding: 1rem 2rem;
}

.nav-list a.btn::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 3rem;
    height: 2rem;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--neutral-dark-grey);
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 3px;
}

/* ======= HERO SECTION ======= */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(120deg, var(--primary-light-green) 0%, var(--primary-green) 100%);
    color: var(--neutral-white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-content {
    width: 50%;
    padding: 0 5rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--neutral-white);
    font-size: 5.2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 80%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hero .btn {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.wave-divider .wave {
    fill: var(--neutral-white);
}

/* ======= ABOUT SECTION ======= */
.about {
    background-color: var(--neutral-white);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light-green);
    z-index: -1;
    border-radius: 1rem;
}

.about-image img {
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    color: var(--primary-dark-green);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-light-green);
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: var(--neutral-off-white);
    padding: 2rem;
    border-radius: 1rem;
    flex: 1;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0;
}

/* ======= HOW IT WORKS SECTION ======= */
.how-it-works {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/para.jpeg') center/cover fixed;
    opacity: 0.05;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.step {
    background-color: var(--neutral-white);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 195, 74, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: 1.5rem;
    z-index: -1;
}

.step-icon {
    width: 8rem;
    height: 8rem;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--neutral-white);
    font-size: 3rem;
    position: relative;
}

.step-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed var(--primary-light-green);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.step-number {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 4rem;
    height: 4rem;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 2rem;
    color: var(--neutral-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-graphic {
    margin-top: 6rem;
    text-align: center;
}

.process-graphic img {
    max-width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* ======= BENEFITS SECTION ======= */
.benefits {
    background-color: var(--neutral-off-white);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(139, 195, 74, 0.15), transparent 70%);
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background-color: var(--neutral-white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    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: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-light-green));
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 7rem;
    height: 7rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--primary-light-green), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--neutral-white);
    font-size: 2.8rem;
    position: relative;
    overflow: hidden;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    top: -60%;
    left: -100%;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon::after {
    left: 100%;
}

.benefit-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark-green);
}

/* ======= DIET PLANS SECTION ======= */
.diet-plans {
    background-color: var(--neutral-white);
}

.plans {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.plan {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.plan.reverse {
    flex-direction: row-reverse;
}

.plan-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.plan-image img {
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.plan:hover .plan-image img {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.plan-content {
    flex: 1;
    min-width: 300px;
}

.plan-content h3 {
    color: var(--primary-dark-green);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.plan-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-yellow);
}

.testimonial {
    background-color: var(--neutral-off-white);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2.5rem 0;
    position: relative;
    font-style: italic;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -25px;
    left: 20px;
    font-size: 8rem;
    font-family: var(--heading-font);
    color: rgba(76, 175, 80, 0.1);
    line-height: 1;
}

/* ======= FAQ SECTION ======= */
.faq {
    background-color: var(--neutral-off-white);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    right: -300px;
    top: -300px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1), transparent 70%);
}

.faq::after {
    content: '';
    position: absolute;
    left: -300px;
    bottom: -300px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1), transparent 70%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background-color: var(--neutral-white);
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
    padding-right: 2rem;
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.faq-question.active {
    background-color: rgba(139, 195, 74, 0.05);
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* ======= NEWSLETTER SECTION ======= */
.newsletter {
    background: linear-gradient(120deg, var(--primary-dark-green), var(--primary-green));
    color: var(--neutral-white);
    text-align: center;
    padding: 6rem 0;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h2 {
    color: var(--neutral-white);
    margin-bottom: 2rem;
}

.newsletter p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem 2rem;
    border-radius: 5rem;
    border: none;
    font-size: 1.6rem;
    outline: none;
}

.newsletter .btn {
    border-radius: 5rem;
    padding: 1.5rem 3rem;
}

.form-note {
    font-size: 1.4rem;
    margin-top: 2rem;
    opacity: 0.8;
}

.form-note a {
    color: var(--neutral-white);
    text-decoration: underline;
}

.form-note a:hover {
    color: var(--accent-yellow);
}

/* ======= CONTACT SECTION ======= */
.contact {
    background-color: var(--neutral-white);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-top: 0.5rem;
}

.map-container {
    margin-top: 4rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.form-group {
    flex: 1 0 calc(50% - 1rem);
}

.form-group.full-width {
    flex: 1 0 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--neutral-grey);
    border-radius: 0.5rem;
    font-family: var(--body-font);
    font-size: 1.6rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.checkbox-group {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.4rem;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 1.4rem;
}

.checkbox-group a {
    text-decoration: underline;
}

/* ======= FOOTER SECTION ======= */
.footer {
    background-color: var(--neutral-dark-grey);
    color: var(--neutral-white);
    padding-top: 6rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 5rem;
    margin-bottom: 2rem;
}

.footer-logo p {
    max-width: 300px;
    opacity: 0.8;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h3 {
    color: var(--neutral-white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light-green);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-light-green);
    padding-left: 5px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.6;
    font-size: 1.4rem;
}

/* ======= COOKIE CONSENT BANNER ======= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--neutral-white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    display: block;
    animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* ======= BACK TO TOP BUTTON ======= */
#back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-green);
    color: var(--neutral-white);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--primary-dark-green);
    transform: translateY(-5px);
}

/* ======= RESPONSIVE STYLES ======= */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
    
    .hero-content {
        padding: 0 3rem;
    }
    
    .hero-image {
        width: 55%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 55%;
    }
    
    section {
        padding: 6rem 0;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-content {
        width: 60%;
    }
    
    .hero h1 {
        font-size: 4.2rem;
    }
    
    .hero-image {
        width: 50%;
    }
    
    .step-icon {
        width: 7rem;
        height: 7rem;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 52%;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .hero {
        flex-direction: column;
        justify-content: center;
        height: auto;
        padding: 12rem 0 6rem;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
        padding: 0 2rem;
        margin-bottom: 5rem;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 80%;
        margin: 0 auto;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--neutral-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5rem 0;
        transition: all 0.5s ease;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list a {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .section-header h2 {
        font-size: 3.2rem;
    }
    
    .about-content,
    .contact-container {
        gap: 4rem;
    }
    
    .plan, 
    .plan.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    
    .plan-content {
        text-align: center;
    }
    
    .plan-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-content {
        gap: 4rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 50%;
    }
    
    .hero h1 {
        font-size: 3.6rem;
    }
    
    .benefit-cards {
        grid-template-columns: 1fr;
    }
    
    .team-members {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 4rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}