/*
 * Design System: soft-organic
 * Border Style: pill
 * Shadow Style: subtle
 * Color Mode: mixed
 * Color Palette: Terracotta Sunset
*/

:root {
    --color-dark: #2C2A29;
    --color-light: #F5EFE6;
    --color-primary: #E57373;
    --color-secondary: #A1887F;
    --color-text-light: #F5EFE6;
    --color-text-dark: #2C2A29;
    --font-family-base: 'Helvetica Neue', Arial, sans-serif;
    --border-radius-card: 32px;
    --border-radius-btn: 50px;
    --shadow-subtle: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* --- Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    line-height: 1.7;
    background-color: var(--color-light);
    color: var(--color-text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

h1, h2, h3, h4 {
    margin: 0 0 1rem 0;
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.5rem); }
p { font-size: clamp(1rem, 2.5vw, 1.1rem); margin-bottom: 1rem; }

/* --- Layout & Sections --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-padding {
    padding: 60px 0;
}

.section-light {
    background-color: var(--color-light);
    color: var(--color-text-dark);
}

.section-dark {
    background-color: var(--color-dark);
    color: var(--color-text-light);
}

.section-dark a {
    color: var(--color-primary);
}
.section-dark a:hover {
    filter: brightness(1.2);
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}
.section-title p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-secondary);
}
.section-dark .section-title p {
    color: #ccc;
}
.text-center {
    text-align: center;
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-dark);
    color: var(--color-text-light);
}
.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(--color-text-light);
}
.logo:hover {
    color: var(--color-primary);
}
.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(--color-text-light);
    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 {
    color: var(--color-text-light);
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}
.desktop-nav a:hover {
    border-bottom-color: var(--color-primary);
}
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--color-dark);
}
.mobile-nav ul { list-style: none; padding: 20px; margin: 0; }
.mobile-nav li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav a { color: var(--color-text-light); display: block; }

/* --- Hero Section (Gradient Center) --- */
.hero-gradient {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 80px 16px;
    background: radial-gradient(circle, var(--color-secondary) 0%, var(--color-dark) 80%);
    color: var(--color-text-light);
    overflow: hidden;
}
.hero-blobs { position: absolute; inset: 0; z-index: 0; }
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}
.blob1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background-color: var(--color-primary);
}
.blob2 {
    width: 350px;
    height: 350px;
    bottom: -150px;
    right: -150px;
    background-color: var(--color-light);
}
.hero-content-center {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}
.hero-content-center h1 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.hero-content-center p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius-btn);
    font-weight: bold;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229, 115, 115, 0.3);
    color: var(--color-text-light);
}

/* --- Benefits Section (2x2 Grid) --- */
.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.benefit-card {
    background-color: #fff;
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.benefit-card h3 {
    color: var(--color-primary);
}

/* --- Accordion FAQ --- */
.accordion-container { max-width: 800px; margin: 0 auto; }
.accordion-item {
    background-color: #3c3a39;
    margin-bottom: 10px;
    border-radius: var(--border-radius-card);
    overflow: hidden;
}
.accordion-header {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
    position: relative;
}
.accordion-header::-webkit-details-marker { display: none; }
.accordion-header::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.accordion-item[open] .accordion-header::after {
    transform: translateY(-50%) rotate(45deg);
}
.accordion-content {
    padding: 0 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.accordion-content p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* --- Stats Bar --- */
.stats-bar {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 40px 0;
}
.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: bold;
    line-height: 1;
}
.stat-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* --- Checklist Section --- */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    list-style: none;
    padding: 0;
}
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 16px;
    border-radius: var(--border-radius-btn);
    box-shadow: var(--shadow-subtle);
}
.checklist-item p { margin: 0; }
.checkmark {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: bold;
    line-height: 1.2;
}

/* --- Comparison Table --- */
.comparison-table-wrapper {
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    text-align: center;
}
.comparison-table th, .comparison-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.comparison-table thead {
    background-color: rgba(0,0,0,0.2);
}
.comparison-table th {
    font-weight: bold;
}
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}
.icon-yes { color: #8BC34A; font-weight: bold; }
.icon-no { color: var(--color-primary); font-weight: bold; }

/* --- Footer --- */
.site-footer {
    padding: 60px 0 0;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}
.footer-about p, .footer-contact p, .footer-links li, .footer-legal li {
    font-size: 0.95rem;
    color: #ccc !important; /* Force color */
}
.footer-about .logo { margin-bottom: 16px; display: inline-block; }
.footer-links ul, .footer-legal ul { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-legal li { margin-bottom: 10px; }
.footer-copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #aaa !important; /* Force color */
}

/* --- Page Hero --- */
.page-hero {
    padding: 60px 0;
    text-align: center;
}

/* --- Program Page (Numbered Sections) --- */
.numbered-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
}
.number-badge {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-primary);
    line-height: 1;
    flex-shrink: 0;
}
.content-image {
    border-radius: var(--border-radius-card);
    margin-top: 16px;
}

/* --- Mission Page (Split Layout) --- */
.mission-split-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.mission-image {
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.value-card {
    background-color: #3c3a39;
    padding: 24px;
    border-radius: var(--border-radius-card);
}
.value-card h4 { color: var(--color-primary); }

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.contact-details-list { margin-top: 24px; }
.contact-item { margin-bottom: 20px; }
.contact-item h4 { color: var(--color-primary); }
.contact-item p { margin: 0; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 8px; font-weight: 500; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: var(--border-radius-btn);
    border: 1px solid #ddd;
    background-color: #fff;
    font-size: 1rem;
}
.contact-form textarea {
    border-radius: var(--border-radius-card);
    resize: vertical;
}
.form-submit-btn { width: 100%; }

/* --- Legal & Thank You Pages --- */
.legal-page ul { padding-left: 20px; }
.legal-page li { margin-bottom: 10px; }
.thank-you-icon { font-size: 4rem; margin-bottom: 16px; }
.next-steps { margin-top: 48px; }
.next-steps-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 24px; }
.btn-secondary { background-color: var(--color-secondary); color: var(--color-text-light); }
.btn-secondary:hover { background-color: var(--color-dark); color: var(--color-text-light); }

/* --- 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-dark);
    color: var(--color-text-light);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}
#cookie-banner.hidden { display: none; }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px;
    border: none;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept { background-color: var(--color-primary); color: var(--color-text-light); }
.cookie-btn-decline { background-color: #555; color: var(--color-text-light); }


/* --- Media Queries (Mobile First) --- */
@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); }
}

@media (min-width: 768px) {
    .section-padding { padding: 80px 0; }
    .container { padding: 0 24px; }
    .benefits-grid-2x2 { grid-template-columns: repeat(2, 1fr); }
    .checklist-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .numbered-section {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    .numbered-section.reverse { flex-direction: row-reverse; }
    .number-badge { font-size: 4rem; }
    .mission-split-container { grid-template-columns: 1fr 1.2fr; }
    .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

@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; }
}