/* Color Palette: Paleta Tierra y Siena */
:root {
    --color-primary-accent: #A0522D; /* Sienna */
    --color-secondary-accent: #D2B48C; /* Tan */
    --color-background-light: #FDF5E6; /* Old Lace */
    --color-background-dark: #36454F; /* Charcoal */
    --color-text-dark: #333333;
    --color-text-light: #FDF5E6;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Border Radius for soft-organic design */
    --border-radius-small: 8px;
    --border-radius-medium: 12px;
    --border-radius-large: 24px;
    --border-radius-section: 32px; /* for major blocks/sections */
    --border-radius-pill: 50px;

    /* Shadow style for dramatic */
    --shadow-dramatic: 0 24px 64px rgba(0,0,0,0.22);
    --shadow-dramatic-hover: 0 32px 80px rgba(0,0,0,0.30);

    /* Typography */
    --font-family-base: 'Arial', sans-serif;
    --font-family-heading: 'Georgia', serif; /* Serif for soft-organic */
}

/* Base Styles & Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-base);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-background-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    margin-bottom: 0.8em;
    line-height: 1.2;
    color: var(--color-text-dark);
}

h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); } /* 40px to 72px */
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }  /* 32px to 56px */
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); } /* 24px to 40px */
p { font-size: clamp(1rem, 2.5vw, 1.125rem); } /* 16px to 18px */

a {
    color: var(--color-primary-accent);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: var(--color-secondary-accent);
    transform: translateY(-2px);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-medium); /* Rounded images */
}

/* Global Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px; /* Mobile first padding */
}

/* Section Styling (Mixed Color Mode) */
section {
    padding: 48px 0; /* Mobile first section padding */
    border-radius: var(--border-radius-section); /* Soft organic sections */
    margin: 24px 16px; /* Spacing between sections */
    overflow: hidden; /* For decorative shapes and overflows */
    position: relative;
}

.section-dark {
    background-color: var(--color-background-dark);
    color: var(--color-text-light);
}

.section-dark h1, .section-dark h2, .section-dark h3 {
    color: var(--color-text-light);
}

.section-dark a {
    color: var(--color-secondary-accent);
}

.section-dark a:hover {
    color: var(--color-primary-accent);
}

.section-light {
    background-color: var(--color-background-light);
    color: var(--color-text-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5em;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-primary-accent);
    border-radius: 50px;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius-medium);
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 44px; /* Touch target */
    box-shadow: var(--shadow-dramatic); /* Dramatic shadow for buttons */
}

.btn-primary {
    background-color: var(--color-primary-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-dramatic-hover);
}

.btn-secondary {
    background-color: var(--color-secondary-accent);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-primary-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-dramatic-hover);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-background-dark); /* Mixed: Header dark */
    color: var(--color-text-light);
    box-shadow: var(--shadow-dramatic);
    z-index: 1000;
}

.site-header a {
    color: var(--color-text-light);
}

.site-header a:hover {
    color: var(--color-secondary-accent);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - siempre a la izquierda */
.logo {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: bold;
    z-index: 100;
    padding: 5px 0;
}

/* Hamburger - SIEMPRE A LA DERECHA */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none; /* Show only on mobile */
}

.hamburger .line {
    width: 100%;
    height: 3px;
    margin: 5px 0;
    background-color: var(--color-text-light);
    transition: 0.3s;
    border-radius: 2px;
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    padding: 8px 0;
    display: block;
    font-weight: 500;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px; /* Adjust based on header height */
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, background-color 0.3s ease;
    z-index: 99;
    background-color: var(--color-background-dark); /* Mobile nav background */
    color: var(--color-text-light);
    box-shadow: var(--shadow-dramatic);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px 16px;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.mobile-nav a:hover {
    color: var(--color-secondary-accent);
}

/* Hero Section - gradient-center */
.hero-gradient-center {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-background-dark) 0%, #202b33 50%, var(--color-primary-accent) 100%);
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
    border-radius: var(--border-radius-section);
    margin: 24px 16px;
}

.hero-gradient-center .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.hero-gradient-center h1 {
    color: var(--color-text-light);
    margin-bottom: 0.5em;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
}

.hero-gradient-center .hero-subtitle {
    color: var(--color-text-light);
    font-size: clamp(1.1rem, 2.8vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Decorative shapes for gradient-center hero */
.hero-decorative-shape-1,
.hero-decorative-shape-2 {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.7;
    z-index: 1;
}

.hero-decorative-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    transform: rotate(20deg);
}

.hero-decorative-shape-2 {
    width: 400px;
    height: 400px;
    bottom: 5%;
    right: -10%;
    transform: rotate(-30deg);
}


/* Benefits Section - 5 Asymmetric Cards */
.benefits-grid-asymm {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: single column */
    gap: 24px;
}

.benefit-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-large); /* Rounded cards */
    box-shadow: var(--shadow-dramatic); /* Dramatic shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dramatic-hover);
}

.benefit-card h3 {
    color: var(--color-primary-accent);
    margin-bottom: 0.8em;
    font-size: clamp(1.25rem, 3vw, 1.8rem);
}

.benefit-card p {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}

/* Expert Block */
.expert-layout {
    display: flex;
    flex-direction: column; /* Mobile: column layout */
    align-items: center;
    gap: 40px;
    padding: 0 16px;
}

.expert-image-wrapper {
    flex-shrink: 0;
    width: 100%;
    max-width: 400px; /* Limit image size on mobile */
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-dramatic);
}

.expert-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-large);
}

.expert-content {
    text-align: center;
    max-width: 700px;
}

.expert-quote {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-secondary-accent);
    line-height: 1.5;
}

.expert-name {
    font-weight: bold;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 0.5rem;
}

.expert-title {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    opacity: 0.8;
}

/* CTA Banner */
.cta-banner-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--color-secondary-accent); /* Accent color for banner */
    color: var(--color-white);
    border-radius: var(--border-radius-section);
    margin: 24px 16px;
    box-shadow: var(--shadow-dramatic);
}

.cta-banner-section .section-title,
.cta-banner-section .section-description {
    color: var(--color-white);
}

.cta-banner-section .section-title::after {
    background-color: var(--color-white);
}

.cta-banner-content .btn {
    margin-top: 2rem;
    background-color: var(--color-background-dark); /* Dark button on light banner */
}

.cta-banner-content .btn:hover {
    background-color: var(--color-primary-accent);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: separate; /* For rounded borders */
    border-spacing: 0;
    margin-top: 2.5rem;
    background-color: var(--color-background-light);
    color: var(--color-text-dark);
    border-radius: var(--border-radius-large);
    overflow: hidden; /* Ensures internal borders don't break roundness */
    box-shadow: var(--shadow-dramatic);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.comparison-table th {
    background-color: var(--color-primary-accent);
    color: var(--color-white);
    font-weight: bold;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    position: sticky;
    top: 0;
    z-index: 1;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: rgba(255,255,255,0.05); /* Slight stripe */
}

.table-icon-check {
    color: #28a745; /* Green for check */
    font-weight: bold;
    font-size: 1.2em;
}

.table-icon-cross {
    color: #dc3545; /* Red for cross */
    font-weight: bold;
    font-size: 1.2em;
}

.table-responsive {
    overflow-x: auto; /* Enable horizontal scroll on small screens */
    margin: 0 16px; /* Match section padding */
}

/* Accordion FAQ */
.accordion-container {
    max-width: 800px;
    margin: 2.5rem auto;
    padding: 0 16px;
}

.accordion-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius-medium);
    margin-bottom: 15px;
    box-shadow: var(--shadow-dramatic);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-dramatic-hover);
}

.accordion-header {
    display: block;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    color: var(--color-primary-accent);
    position: relative;
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--color-background-light);
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--color-secondary-accent);
}

.accordion-item[open] .accordion-header::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg); /* No rotation needed for minus */
}

.accordion-content {
    padding: 0 25px 20px;
    color: var(--color-text-dark);
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
}

.accordion-content p {
    margin-bottom: 1em;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Footer */
.site-footer {
    padding-top: 60px;
    color: var(--color-text-light) !important; /* Important for translation protection */
    background-color: var(--color-background-dark) !important; /* Important for translation protection */
    border-radius: var(--border-radius-section);
    box-shadow: var(--shadow-dramatic);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: single column */
    gap: 30px;
    padding-bottom: 40px;
}

.footer-logo {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
    color: var(--color-text-light);
}

.footer-logo:hover {
    color: var(--color-secondary-accent);
}

.footer-description {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    line-height: 1.5;
    opacity: 0.9;
}

.footer-col h3 {
    color: var(--color-secondary-accent);
    margin-bottom: 1.2rem;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.footer-links {
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-text-light);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-secondary-accent);
    transform: translateX(5px);
}

.footer-col p {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    margin-bottom: 0.6em;
    line-height: 1.5;
    opacity: 0.9;
}

.footer-col a {
    color: var(--color-secondary-accent);
    opacity: 0.9;
}

.footer-col a:hover {
    color: var(--color-primary-accent);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    background-color: var(--color-background-dark) !important;
    color: var(--color-text-light) !important;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    transform: translateY(0); transition: transform 0.4s ease;
    background-color: var(--color-background-dark);
    color: var(--color-text-light);
    box-shadow: var(--shadow-dramatic);
    border-top-left-radius: var(--border-radius-large);
    border-top-right-radius: var(--border-radius-large);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: clamp(0.9rem, 2.2vw, 1rem); }
#cookie-banner p a { color: var(--color-secondary-accent); text-decoration: underline; }
#cookie-banner p a:hover { color: var(--color-primary-accent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 10px 20px;
    border-radius: var(--border-radius-medium);
    border: none;
    cursor: pointer;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    font-weight: bold;
    min-height: 44px; /* Touch target */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow-dramatic);
}
.cookie-btn-accept {
    background-color: var(--color-primary-accent);
    color: var(--color-white);
}
.cookie-btn-accept:hover {
    background-color: var(--color-secondary-accent);
    transform: translateY(-2px);
}
.cookie-btn-decline {
    background-color: var(--color-background-light);
    color: var(--color-text-dark);
}
.cookie-btn-decline:hover {
    background-color: var(--color-secondary-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Subpage Hero */
.hero-subpage {
    background: linear-gradient(135deg, var(--color-background-dark) 0%, #202b33 50%, var(--color-primary-accent) 100%);
    color: var(--color-text-light);
    text-align: center;
    padding: 80px 0;
    border-radius: var(--border-radius-section);
    margin: 24px 16px;
    box-shadow: var(--shadow-dramatic);
}

.hero-subpage-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.hero-subpage h1 {
    color: var(--color-text-light);
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 0.5em;
}

.hero-subpage .hero-subtitle {
    color: var(--color-text-light);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto;
}

/* Policy Content */
.policy-content {
    padding: 60px 0;
}

.policy-content h2 {
    color: var(--color-primary-accent);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: left;
}

.policy-content p, .policy-content li {
    margin-bottom: 1em;
    line-height: 1.7;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.policy-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5em;
}

/* Program Page - Numbered Sections */
.numbered-sections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 3rem;
    padding: 0 16px;
}

.numbered-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-dramatic);
}

.numbered-digit {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: bold;
    color: var(--color-secondary-accent);
    line-height: 1;
    margin-bottom: 10px;
}

.numbered-content h3 {
    color: var(--color-primary-accent);
    margin-bottom: 0.8em;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.numbered-content p {
    margin-bottom: 1em;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

/* Program Page - Image Section */
.image-content-layout {
    display: flex;
    flex-direction: column; /* Mobile first: column */
    align-items: center;
    gap: 40px;
    padding: 0 16px;
}

.image-text-block {
    text-align: center;
    max-width: 700px;
}

.image-text-block h2 {
    color: var(--color-text-light);
}

.image-text-block p {
    color: var(--color-text-light);
    opacity: 0.9;
    margin-bottom: 1em;
}

.image-block-wrapper {
    width: 100%;
    max-width: 600px; /* Limit image size */
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-dramatic);
}

.integrated-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-large);
}

/* CTA Center for Program Page */
.cta-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.cta-content-center .btn {
    margin-top: 2rem;
}

/* Mission Page - Story Team Section */
.mission-story-section {
    padding: 60px 0;
}

.story-content-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 16px;
    text-align: justify;
}

.story-content-block p {
    margin-bottom: 1.5em;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.story-content-block h2 {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary-accent);
}

.mission-team-image-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-dramatic);
}

.mission-team-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-caption {
    text-align: center;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    margin-top: 10px;
    padding: 0 16px;
}

.values-list {
    list-style: none;
    margin: 2rem auto;
    max-width: 700px;
    padding: 0 16px;
    text-align: left;
}

.values-list li {
    background-color: var(--color-white);
    padding: 18px 25px;
    margin-bottom: 15px;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-dramatic);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-dramatic-hover);
}

.values-list li strong {
    color: var(--color-primary-accent);
}

/* Contact Page - Grid 2 Columns */
.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first: single column */
    gap: 40px;
    padding: 0 16px;
}

.contact-info-block, .contact-form-block {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-dramatic);
}

.contact-info-block h2, .contact-form-block h2 {
    color: var(--color-primary-accent);
    text-align: left;
}

.contact-info-block .section-description, .contact-form-block .section-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h3 {
    color: var(--color-secondary-accent);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 0.5em;
}

.contact-detail p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.5;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.8em;
    font-weight: bold;
    color: var(--color-text-dark);
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-small);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    min-height: 44px; /* Touch target */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.thank-you-content h1 {
    color: var(--color-primary-accent);
    margin-bottom: 1rem;
}

.thank-you-content .section-description {
    margin-bottom: 2.5rem;
}

.next-steps-block {
    margin-top: 3rem;
    padding: 30px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-dramatic);
}

.next-steps-block h2 {
    color: var(--color-secondary-accent);
    margin-bottom: 2rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.next-steps-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first: single column */
    gap: 20px;
}

.step-card {
    background-color: var(--color-background-light);
    padding: 25px;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-dramatic);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dramatic-hover);
}

.step-card h3 {
    color: var(--color-primary-accent);
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.step-card p {
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    margin-bottom: 1.5rem;
}

.step-card .btn-secondary {
    width: 100%;
}


/* Media Queries for Responsive Design (Mobile-First) */
@media (min-width: 480px) {
    .benefits-grid-asymm {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* More flexible on small tablets */
    }
    .next-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }

    section {
        padding: 60px 0;
        margin: 32px 24px;
    }

    .section-description {
        margin-bottom: 3.5rem;
    }

    .desktop-nav {
        display: block;
    }

    .hamburger {
        display: none; /* Hide hamburger on tablet+ */
    }

    .mobile-nav {
        display: none; /* Hide mobile nav on tablet+ */
    }

    /* Hero Section */
    .hero-gradient-center {
        min-height: 90vh;
    }

    /* Benefits Section - 5 Asymmetric Cards */
    .benefits-grid-asymm {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .benefit-card-large {
        grid-column: span 1; /* Default to 1 column on tablet */
    }
    .benefit-card-small {
        grid-column: span 1;
    }

    /* Expert Block */
    .expert-layout {
        flex-direction: row; /* Tablet: row layout */
        text-align: left;
        gap: 60px;
        padding: 0 24px;
    }
    .expert-image-wrapper {
        width: 40%;
        max-width: none; /* Remove max-width on larger screens */
    }
    .expert-content {
        width: 60%;
        text-align: left;
    }
    .expert-quote {
        text-align: left;
    }

    /* Comparison Table */
    .table-responsive {
        margin: 0 24px;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 18px 25px;
    }

    /* Program Page - Numbered Sections */
    .numbered-sections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    .numbered-item {
        flex-direction: row;
        text-align: left;
    }
    .numbered-digit {
        margin-bottom: 0;
        margin-right: 20px;
    }

    /* Program Page - Image Section */
    .image-content-layout {
        flex-direction: row-reverse; /* Text left, image right */
        text-align: left;
        gap: 60px;
        padding: 0 24px;
    }
    .image-text-block {
        text-align: left;
        width: 50%;
    }
    .image-block-wrapper {
        width: 50%;
    }

    /* Contact Page - Grid 2 Columns */
    .contact-grid-layout {
        grid-template-columns: 1fr 1.5fr; /* Info left, Form right */
        padding: 0 24px;
    }

    /* Thank You Page */
    .next-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    section {
        padding: 80px 0;
        margin: 40px 0; /* Full width sections for max-width container */
    }

    .container {
        padding: 0 0; /* Container handles padding */
    }

    /* Benefits Section - 5 Asymmetric Cards */
    .benefits-grid-asymm {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for large screens */
    }
    .benefit-card-large:nth-child(1) {
        grid-column: span 2; /* First large card spans 2 columns */
    }
    .benefit-card-large:nth-child(2) {
        grid-column: span 1; /* Second large card spans 1 column */
    }
    .benefit-card-small {
        grid-column: span 1;
    }
    /* Adjusting to get 2 large, 3 small - need to ensure placement
       Let's assume the first two are large and the next three are small for simplicity
       Or, better, specify the layout with grid-template-areas or explicit grid-column/row */
    .benefits-grid-asymm {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto; /* Two rows for content */
        gap: 32px;
        grid-template-areas:
            "large1 large1 small1"
            "large2 small2 small3"; /* Example asymmetrical layout */
    }
    .benefit-card:nth-child(1) { grid-area: large1; }
    .benefit-card:nth-child(2) { grid-area: large2; }
    .benefit-card:nth-child(3) { grid-area: small1; }
    .benefit-card:nth-child(4) { grid-area: small2; }
    .benefit-card:nth-child(5) { grid-area: small3; }


    /* Program Page - Numbered Sections */
    .numbered-sections-grid {
        grid-template-columns: repeat(2, 1fr); /* 3 columns for large screens */
        gap: 80px 40px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr; /* More balanced columns */
    }
}

/* Hamburger menu specific styles for mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block; /* Show hamburger on mobile */
    }

    .mobile-nav {
        display: block;
        top: 70px; /* Adjust if header height changes */
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px; /* Max height to reveal menu */
    }

    /* Hamburger animation */
    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Cookie banner specific mobile adjustments */
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}