/* Color Palette: Warm (Orange-Terracotta) */
:root {
    --primary-color: #D35400; /* Pumpkin Orange */
    --secondary-color: #E67E22; /* Carrot Orange */
    --dark-color: #2C3E50; /* Midnight Blue-ish Gray */
    --text-color: #34495E; /* Wet Asphalt */
    --light-bg-color: #FDFEFE;
    --white-color: #FFFFFF;
    --border-color: #EAECEE;
    --footer-bg-color: #2C3E50;
    --footer-text-color: #BDC3C7;
}

/* --- Global Styles & Resets --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4 {
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--light-bg-color);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-lead {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: center;
}

/* --- Header & Navigation --- */
.site-header {
    background-color: var(--white-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 10px;
}

.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;
    color: var(--dark-color);
    z-index: 100;
}

.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(--dark-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;
}

.desktop-nav a {
    font-weight: 600;
    color: var(--text-color);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px; /* Adjust based on header height */
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--white-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    z-index: 99;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.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);
}
.mobile-nav li:last-child {
    border-bottom: none;
}
.mobile-nav a {
    display: block;
    width: 100%;
    font-weight: 600;
    color: var(--text-color);
}

@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); }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* --- Hero Section (Fullscreen) --- */
.hero-section-fullscreen {
    height: 80vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.hero-content-centered {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}
.hero-content-centered h1 {
    color: var(--white-color);
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* --- Cards --- */
.card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.card-title {
    margin-top: 0;
}
.benefits-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .benefits-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Stats Bar --- */
.section-stats {
    background-color: var(--secondary-color);
    color: var(--white-color);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
}
.stat-label {
    font-size: 1rem;
}
@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Split Layout --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.split-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
@media (min-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.testimonial-card {
    background-color: var(--white-color);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
}
.testimonial-card blockquote {
    border: none;
    padding: 0;
    margin: 0 0 1rem 0;
    font-style: italic;
}
.testimonial-card cite {
    font-weight: 600;
    color: var(--dark-color);
}
@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- CTA Section --- */
.section-cta {
    background-color: var(--dark-color);
    color: var(--white-color);
}
.cta-container {
    text-align: center;
}
.cta-container h2 {
    color: var(--white-color);
}

/* --- Page Header --- */
.page-header {
    background-color: var(--light-bg-color);
    text-align: center;
    padding: 60px 0;
}
.page-title { margin-bottom: 0.5rem; }
.page-subtitle { font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

/* --- Timeline (Program Page) --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 15px;
}
.timeline-item {
    padding: 10px 40px 30px 60px;
    position: relative;
}
.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--white-color);
    border: 4px solid var(--primary-color);
    top: 15px;
    left: 6px;
    z-index: 1;
}
.timeline-content h3 {
    margin-top: 0;
}

/* --- Accordion (Program Page) --- */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    border-bottom: 1px solid var(--border-color);
}
.accordion-header {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}
.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.accordion-header.active::after {
    transform: rotate(45deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-content p {
    padding: 0 20px 20px 20px;
}

/* --- Mission Page --- */
.story-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.story-image img {
    width: 100%;
    border-radius: 8px;
}
@media (min-width: 992px) {
    .story-container { grid-template-columns: 1fr 1.2fr; }
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.value-card {
    text-align: center;
    padding: 20px;
}
@media (min-width: 768px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}
.vision-container {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

/* --- Contact Page --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
@media (min-width: 992px) {
    .contact-layout { grid-template-columns: 1.2fr 1fr; }
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}
.contact-form button {
    width: 100%;
}
.contact-info-container .contact-item {
    margin-bottom: 20px;
}
.contact-info-container h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.contact-info-container p {
    margin-bottom: 0;
}

/* --- Legal & Thank You Pages --- */
.legal-content { max-width: 800px; }
.legal-content h1, .legal-content h2 { margin-top: 2rem; margin-bottom: 1rem; }
.text-center { text-align: center; }
.thank-you-section { padding: 100px 0; }
.thank-you-actions { margin-top: 40px; }
.action-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }

/* --- Footer --- */
.site-footer {
    background-color: var(--footer-bg-color) !important;
    color: var(--footer-text-color) !important;
    padding: 60px 0 20px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-heading {
    color: var(--white-color) !important;
    margin-bottom: 15px;
}
.footer-column p, .footer-links li {
    margin-bottom: 10px;
}
.footer-links {
    list-style: none;
}
.footer-links a {
    color: var(--footer-text-color) !important;
}
.footer-links a:hover {
    color: var(--white-color) !important;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #4E5D6C;
    padding-top: 20px;
    font-size: 0.9rem;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background-color: var(--dark-color);
    color: var(--white-color);
    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;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }
#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: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}
.cookie-btn-accept {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.cookie-btn-decline {
    background-color: #566573;
    color: var(--white-color);
}
@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; }
}
```