/*
  Palette: Warm Earth Tones
  Primary: #D35400 (Burnt Orange)
  Secondary: #784212 (Deep Brown)
  Accent: #F7DC6F (Pale Yellow)
  Text Dark: #2C3E50 (Charcoal)
  Background Light: #FDFEFE (Off-white)
*/

:root {
    --primary-color: #D35400;
    --secondary-color: #784212;
    --accent-color: #F7DC6F;
    --text-dark: #2C3E50;
    --text-light: #FDFEFE;
    --bg-light: #FDFEFE;
    --bg-dark: #2C3E50;
    --border-color: #e0e0e0;
    --footer-bg: #212F3D;
    --footer-text: #ABB2B9 !important;
}

/* --- Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.thank-you-section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--secondary-color);
    margin-bottom: 24px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: -15px auto 30px auto;
    text-align: center;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center-aligned {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #E67E22;
    transform: translateY(-2px);
    text-decoration: none;
}

.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(--text-light);
    text-decoration: none;
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    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(--secondary-color);
    z-index: 100;
}
.logo:hover { 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(--text-dark);
    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 {
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.desktop-nav a:hover::after { width: 100%; }
.desktop-nav a:hover { text-decoration: none; }
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px; /* Adjust based on header height */
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: var(--bg-light);
    z-index: 99;
}

.mobile-nav ul { list-style: none; }
.mobile-nav li {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.mobile-nav li:last-child { border-bottom: none; }
.mobile-nav a {
    color: var(--text-dark);
    font-size: 1.1rem;
    display: block;
    width: 100%;
}


/* --- Hero Section (Diagonal Split) --- */
.hero-diagonal {
    display: flex;
    min-height: 80vh;
    background-color: var(--bg-light);
}
.hero-content {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 40px;
}
.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
}
.hero-image-clipped {
    width: 50%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}

/* --- Benefits Section (2x2 Grid) --- */
.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}
.benefit-card-v2 {
    background-color: #fff;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}
.card-icon-v2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.benefit-card-v2 h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* --- Split Content Section --- */
.split-content-section .split-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.split-image img {
    border-radius: 8px;
}
.split-text .section-title {
    text-align: left;
}

/* --- Stats Bar Section --- */
.stats-bar-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
}
.stats-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    display: block;
}
.stat-label {
    font-size: 1.1rem;
}

/* --- Accordion / FAQ --- */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}
.accordion-header {
    width: 100%;
    padding: 15px 20px;
    background-color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    display: block;
    position: relative;
}
.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.accordion-item[open] > .accordion-header::after {
    transform: rotate(45deg);
}
.accordion-content {
    padding: 20px;
    background-color: #f9f9f9;
}
.program-accordion .accordion-content {
    background-color: var(--bg-light);
}

/* --- Program Page --- */
.page-header-section {
    background-color: #f7f7f7;
    padding: 50px 0;
}
.image-container-full img {
    width: 100%;
    border-radius: 8px;
}

/* --- Mission Page --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.split-layout-image img { border-radius: 8px; }
.split-layout-content h2 { margin-bottom: 15px; color: var(--secondary-color); }
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}
.value-card {
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    background-color: #f9f9f9;
}
.value-card h3 { margin-bottom: 10px; }
.manifesto-section { background-color: #f7f7f7; }
.manifesto-section blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    font-style: italic;
    border-left: 5px solid var(--accent-color);
    padding-left: 25px;
}

/* --- Contact Page --- */
.contact-info-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    justify-items: center;
    text-align: center;
}
.info-item h3 { color: var(--primary-color); }
.contact-form-wrapper { max-width: 800px; margin: 0 auto; }
.form-title { text-align: center; margin-bottom: 10px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 5px; font-weight: bold; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}
.form-submit-btn { width: 100%; }

/* --- Legal & Thank You Pages --- */
.legal-page h1, .legal-page h2 { margin-top: 20px; margin-bottom: 10px; color: var(--secondary-color); }
.legal-page ul { margin-left: 20px; margin-bottom: 15px; }
.thank-you-section .thank-you-icon {
    font-size: 4rem; color: var(--primary-color);
    line-height: 1; margin-bottom: 20px;
}
.next-steps { margin-top: 40px; }
.next-steps-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 50px 0 0 0;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 15px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--footer-text) !important; }
.footer-col a:hover { color: var(--accent-color) !important; text-decoration: underline; }
.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid #34495E;
}

/* --- 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;
    background-color: var(--bg-dark);
    color: var(--text-light);
    transform: translateY(0); transition: transform 0.4s ease;
}
#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(--accent-color); }
.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: bold;
}
.cookie-btn-accept { background-color: var(--primary-color); color: var(--text-light); }
.cookie-btn-decline { background-color: #566573; color: var(--text-light); }

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-nav {
        display: block;
    }
    .hamburger { 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); }

    .hero-diagonal { flex-direction: column; min-height: auto; }
    .hero-content, .hero-image-clipped { width: 100%; }
    .hero-content { padding: 40px 20px; text-align: center; }
    .hero-image-clipped {
        min-height: 300px;
        clip-path: none;
    }
    .hero-content h1 { text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
}

@media (min-width: 600px) {
    .benefits-grid-2x2 { grid-template-columns: 1fr 1fr; }
    .stats-container { grid-template-columns: repeat(3, 1fr); }
    .values-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .contact-info-block { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 769px) {
    .split-content-section .split-container, .split-layout {
        grid-template-columns: 1fr 1fr;
    }
    .split-content-section.reverse .split-container {
        grid-template-columns: 1fr 1fr;
    }
    .split-content-section.reverse .split-image { order: 2; }
}

@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; }
}