/* Earthy Vintage Tones Palette */
:root {
    --primary-color: #8B4513; /* SaddleBrown */
    --secondary-color: #D2B48C; /* Tan */
    --accent-color: #CD853F; /* Peru */
    --text-color: #3D2B1F; /* Dark Brown */
    --bg-color: #F5F5DC; /* Beige */
    --light-bg-color: #FAF3E0; /* Lighter Beige */
    --white-color: #FFFFFF;
    --border-color: #E0D8C7;
}

/* Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.7;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(61, 43, 31, 0.04) 20px);
}

h1, h2, h3, h4 {
    font-family: 'Georgia', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.75rem); }

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 60px 0;
}

.section-light {
    background-color: var(--light-bg-color);
}

.section-title {
    text-align: center;
    margin-bottom: 24px;
}

.section-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 48px auto;
}

.card {
    background-color: var(--white-color);
    padding: 28px;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.30);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    text-decoration: none;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    color: var(--primary-color);
    text-decoration: none;
}

.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    font-size: 16px;
    font-weight: 600;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px; /* Adjust based on header height */
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 99;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

/* Hero Asymmetric */
.hero-section-asymmetric {
    padding: 60px 0;
    overflow: hidden;
}
.hero-asymmetric-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.hero-asymmetric-content {
    max-width: 550px;
    text-align: center;
}
.hero-title {
    margin-bottom: 16px;
}
.hero-subtitle {
    margin-bottom: 32px;
}
.hero-asymmetric-image-wrapper {
    width: 100%;
    max-width: 600px;
}
.hero-asymmetric-image {
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

/* Benefits Timeline */
.benefits-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}
.benefits-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--secondary-color);
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 50px;
}
.timeline-icon {
    position: absolute;
    left: 0;
    top: 5px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--bg-color);
}
.timeline-content h3 {
    margin-top: 0;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.comparison-table th, .comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.comparison-table thead {
    background-color: var(--secondary-color);
}
.comparison-table th {
    color: var(--primary-color);
    font-weight: bold;
}
.comparison-table tbody tr:nth-child(even) {
    background-color: rgba(210, 180, 140, 0.1);
}
.check-mark { color: #5D9C59; font-weight: bold; }
.cross-mark { color: #D21312; font-weight: bold; }

/* Quote Highlight */
.quote-highlight-section {
    background-color: var(--accent-color);
    padding: 80px 0;
    color: var(--white-color);
}
.quote-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.quote-symbol {
    font-size: 100px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -40px;
    left: -20px;
}
.quote-text {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-style: italic;
    margin-bottom: 20px;
}
.quote-author {
    font-weight: bold;
    font-style: normal;
}

/* Checklist Block */
.checklist-block {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}
.checklist-block li {
    background-color: var(--white-color);
    padding: 16px 24px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.check-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
    margin-right: 16px;
}

/* Two Column Layout */
.two-col-layout {
    display: grid;
    gap: 32px;
    align-items: center;
}
.image-styled {
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.two-col-text ul {
    list-style: none;
    padding-left: 0;
}
.two-col-text li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}
.two-col-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Program Page Timeline */
.program-timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}
.program-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}
.program-timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.program-timeline-item:nth-child(odd) {
    left: 0;
}
.program-timeline-item:nth-child(even) {
    left: 50%;
}
.program-timeline-marker {
    position: absolute;
    top: 20px;
    width: 50px;
    height: 50px;
    z-index: 1;
}
.program-timeline-item:nth-child(odd) .program-timeline-marker {
    right: -25px;
}
.program-timeline-item:nth-child(even) .program-timeline-marker {
    left: -25px;
}
.marker-circle {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--white-color);
    background-color: var(--primary-color);
    text-align: center;
    border-radius: 50%;
    border: 4px solid var(--bg-color);
}
.program-timeline-content {
    position: relative;
}

/* Mission Page Timeline */
.mission-timeline {
    display: grid;
    gap: 32px;
}
.mission-timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.mission-timeline-date {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 50px;
    flex-shrink: 0;
}

/* Contact Page */
.contact-layout {
    display: grid;
    gap: 48px;
}
.contact-details .contact-item {
    margin-bottom: 24px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    font-family: inherit;
    font-size: 16px;
}
.contact-form textarea {
    border-radius: 28px;
}

/* Legal & Thank You Pages */
.legal-page section, .thank-you-section { margin-bottom: 32px; }
.next-steps-links { display: grid; gap: 24px; margin-top: 32px; }
.card-link { display: block; background: var(--white-color); padding: 24px; border-radius: 28px; box-shadow: 0 24px 64px rgba(0,0,0,0.15); }
.card-link:hover { text-decoration: none; transform: translateY(-5px); box-shadow: 0 32px 80px rgba(0,0,0,0.25); }
.card-link h3 { margin-top: 0; }
.card-link p { margin-bottom: 0; }

/* Footer */
.site-footer {
    background-color: var(--primary-color) !important;
    color: var(--light-bg-color) !important;
    padding: 40px 0 0;
}
.footer-container {
    display: grid;
    gap: 32px;
    padding-bottom: 40px;
}
.site-footer h4 { color: var(--white-color) !important; }
.site-footer a { color: var(--secondary-color) !important; }
.site-footer a:hover { color: var(--white-color) !important; }
.footer-column ul { list-style: none; padding: 0; }
.footer-column li { margin-bottom: 8px; }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--accent-color);
}
.footer-bottom p { margin: 0; font-size: 14px; }

/* 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(--text-color);
    color: var(--white-color);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 14px; }
#cookie-banner a { color: var(--secondary-color); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept { background-color: var(--accent-color); color: var(--white-color); }
.cookie-btn-decline { background-color: transparent; color: var(--white-color); border: 1px solid var(--secondary-color); }

/* Responsive Styles (Mobile-First) */
@media (min-width: 768px) {
    .section { padding: 80px 0; }
    .hero-section-asymmetric { padding: 100px 0; }
    .hero-asymmetric-container { flex-direction: row; text-align: left; }
    .hero-asymmetric-content { text-align: left; }
    .checklist-block { grid-template-columns: repeat(2, 1fr); }
    .two-col-layout { grid-template-columns: 1fr 1fr; }
    .two-col-layout.reverse { grid-template-columns: 1fr 1fr; }
    .two-col-layout.reverse .two-col-image { order: 2; }
    .contact-layout { grid-template-columns: 1fr 1.2fr; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
    .next-steps-links { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .footer-container { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: block; }
    .mobile-nav { display: block; }
    #menu-toggle:checked ~ .mobile-nav { max-height: 400px; }
    #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); }

    /* Program Timeline Mobile */
    .program-timeline::after { left: 31px; }
    .program-timeline-item { width: 100%; padding-left: 70px; padding-right: 15px; }
    .program-timeline-item:nth-child(odd) { left: 0; }
    .program-timeline-item:nth-child(even) { left: 0; }
    .program-timeline-marker,
    .program-timeline-item:nth-child(odd) .program-timeline-marker,
    .program-timeline-item:nth-child(even) .program-timeline-marker {
        left: 6px;
    }
}

@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}