/*
    Color Palette: Warm Terracotta
    --primary-color: #E57A44; (Warm Orange/Terracotta)
    --secondary-color: #F4EADE; (Creamy Beige)
    --text-color: #3C3633; (Dark Brown/Grey)
    --dark-bg: #3C3633; (Dark Background)
    --accent-color: #A26769; (Muted Red/Brown)
    --white: #FFFFFF;
*/

:root {
    --primary-color: #E57A44;
    --secondary-color: #F4EADE;
    --text-color: #3C3633;
    --dark-bg: #3C3633;
    --accent-color: #A26769;
    --white: #FFFFFF;
    --font-family-base: 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Georgia', serif;
}

/* --- Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-padding-light {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.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(--text-color);
    z-index: 100;
    text-decoration: none;
}
.logo:hover {
    color: var(--primary-color);
}

.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(--text-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 {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 68px; /* Adjusted for header height */
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 99;
    background-color: var(--white);
    box-shadow: 0 4px 8px 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(--secondary-color);
}
.mobile-nav li:last-child {
    border-bottom: none;
}
.mobile-nav a {
    color: var(--text-color);
    font-size: 1.2rem;
    display: block;
    width: 100%;
}

@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 28px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* --- Intro Section --- */
.intro-section .container {
    max-width: 900px;
    text-align: center;
}
.section-intro-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* --- Benefits Section --- */
.benefits-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}
.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    text-align: center;
}
.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* --- Split Section --- */
.split-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.split-image img {
    border-radius: 8px;
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}
.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
}
.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.testimonial-author {
    font-weight: bold;
    color: var(--text-color);
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--dark-bg);
    color: var(--white);
}
.cta-content {
    text-align: center;
    max-width: 800px;
}
.cta-title {
    color: var(--white);
    font-size: 2.2rem;
}
.cta-text {
    margin-bottom: 30px;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--dark-bg) !important;
    color: var(--secondary-color) !important;
    padding: 60px 0 20px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-title {
    color: var(--white) !important;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.site-footer p, .site-footer a {
    color: var(--secondary-color) !important;
    margin-bottom: 10px;
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer ul li {
    margin-bottom: 8px;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* --- Program Page --- */
.page-header-section {
    background-color: var(--secondary-color);
    text-align: center;
}
.page-title {
    font-size: 3rem;
}
.page-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 20px;
}
.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);
    border: 4px solid var(--primary-color);
    top: 15px;
    left: 12px;
    z-index: 1;
}
.timeline-title {
    font-size: 1.8rem;
}
.full-width-image {
    width: 100%;
    border-radius: 8px;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #ddd;
}
.faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 20px 0;
    cursor: pointer;
    list-style: none; /* For Safari */
}
.faq-answer {
    padding: 0 0 20px;
}

/* --- Mission Page --- */
.story-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.story-image img {
    border-radius: 8px;
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.value-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
}
.manifesto-section {
    background-color: var(--dark-bg);
    color: var(--white);
}
.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.manifesto-content .section-title {
    color: var(--white);
}
.manifesto-content blockquote {
    border: none;
    padding: 0;
    margin: 0;
    font-size: 1.3rem;
    font-style: italic;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
.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;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
.contact-info-item {
    margin-bottom: 25px;
}
.contact-info-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* --- Legal & Thank You Pages --- */
.legal-section .container, .thank-you-section .container {
    max-width: 900px;
}
.legal-section h2 {
    margin-top: 30px;
}
.thank-you-content {
    margin: 40px 0;
}
.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}
.quick-link-card {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    color: var(--text-color);
}
.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: var(--text-color);
}
.quick-link-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}
.thank-you-btn {
    margin-top: 20px;
}

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 18px 24px;
    background-color: var(--dark-bg);
    color: var(--white);
    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(--white) !important; 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: 5px;
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept {
    background-color: var(--primary-color);
    color: var(--white);
}
.cookie-btn-decline {
    background-color: #777;
    color: var(--white);
}

/* --- Media Queries for Responsiveness --- */
@media (min-width: 768px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .split-container { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .story-container { grid-template-columns: 1.2fr 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1.5fr 1fr; }
    .quick-links-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
    .values-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
    .section-padding, .section-padding-light { padding: 60px 0; }
    .section-title { font-size: 2rem; }
    .page-title { font-size: 2.5rem; }
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}
```