/*
  Palette: Graphite & Copper
  Primary: #D35400 (Strong Orange)
  Secondary: #E67E22 (Lighter Orange)
  Dark BG: #2C3E50 (Midnight Blue/Graphite)
  Light BG: #F4F6F7 (Very Light Gray)
  Text Dark: #34495E (Wet Asphalt)
  Text Light: #ECF0F1 (Clouds)
*/

:root {
    --primary-color: #D35400;
    --secondary-color: #E67E22;
    --dark-bg: #2C3E50;
    --light-bg: #F4F6F7;
    --text-dark: #34495E;
    --text-light: #ECF0F1;
    --border-color: #bdc3c7;
    --border-radius-card: 12px;
    --border-radius-btn: 8px;
}

/* --- General Styles --- */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.7;
}

* {
    box-sizing: border-box;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.75em;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p {
    margin-top: 0;
    margin-bottom: 1em;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout & Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 48px 0;
}

.section-dark {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.section-light {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    margin-bottom: 12px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--light-bg);
    border-bottom: 1px solid #e0e0e0;
}

.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(--text-dark);
}

.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;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--light-bg);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--dark-bg) !important;
    color: var(--text-light) !important;
    padding: 48px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
}

.footer-column .footer-heading {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--text-light) !important;
}

.footer-column p, .footer-column a {
    color: var(--text-light) !important;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #4a637e;
    text-align: center;
    padding: 16px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}
.section-light .btn-secondary {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* --- Hero Section (Diagonal Split) --- */
.hero-section-diagonal {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.hero-content {
    text-align: center;
}

.hero-title {
    color: var(--text-light);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-image-clipper {
    clip-path: none;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-card);
}

/* --- Benefits Section (Asymmetrical Grid) --- */
.benefits-grid-asymm {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card-large, .benefit-card-small {
    background-color: #fff;
    padding: 24px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
}

.card-title {
    color: var(--primary-color);
}

/* --- Checklist Block --- */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #34495e;
    padding: 16px;
    border-radius: var(--border-radius-btn);
}

.checklist-item .checkmark {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1.2;
}

.checklist-item p {
    margin: 0;
    flex: 1;
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--primary-color);
    color: #fff;
    padding: 48px 0;
    text-align: center;
}

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-title {
    color: #fff;
}
.cta-text {
    margin-bottom: 24px;
}

/* --- Numbered Steps Section --- */
.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.step-item {
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--border-radius-card);
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* --- Quote Highlight Section --- */
.quote-highlight {
    position: relative;
    padding: 32px;
    background-color: #34495e;
    border-radius: var(--border-radius-card);
    text-align: center;
    margin-bottom: 40px;
}

.quote-symbol {
    font-size: 5rem;
    color: var(--primary-color);
    position: absolute;
    top: 0px;
    left: 20px;
    opacity: 0.3;
    line-height: 1;
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-weight: 600;
    opacity: 0.8;
}

.image-content-block .content-image-rounded {
    border-radius: var(--border-radius-card);
    object-fit: cover;
}

/* --- PROGRAM PAGE --- */
.page-header-section {
    padding: 60px 0;
    text-align: center;
}
.page-title { color: var(--text-light); }
.page-subtitle { max-width: 800px; margin: 0 auto; opacity: 0.9; }

.numbered-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
}

.numbered-section-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.2;
    align-self: flex-start;
}

.numbered-section-title {
    color: var(--primary-color);
}

.image-content-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.content-image-rounded {
    border-radius: var(--border-radius-card);
}

/* --- MISSION PAGE --- */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.value-card {
    background-color: #34495e;
    padding: 24px;
    border-radius: var(--border-radius-card);
}
.text-center-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* --- CONTACT PAGE --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.form-container, .contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.form-title, .info-title {
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-btn);
    font-size: 1rem;
}

.form-submit-btn {
    width: 100%;
}

.info-block {
    margin-bottom: 24px;
}
.info-block-title {
    font-size: 1.2rem;
    color: var(--primary-color);
}
.info-block p {
    margin-bottom: 4px;
}

/* --- LEGAL & THANK YOU PAGES --- */
.legal-content h1 { margin-bottom: 24px; }
.legal-content h2 { margin-top: 32px; margin-bottom: 16px; color: var(--primary-color); }
.legal-content ul { padding-left: 20px; }
.legal-content li { margin-bottom: 10px; }

.thank-you-title { font-size: 2.5rem; }
.thank-you-text { font-size: 1.2rem; max-width: 600px; margin: 16px auto; }
.next-steps { margin-top: 48px; }
.next-steps-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 24px; }

/* --- 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(--dark-bg);
    color: var(--text-light);
    border-top: 2px solid var(--primary-color);
}
#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: var(--border-radius-btn);
    cursor: pointer;
    font-weight: 600;
}
.cookie-btn-accept { background-color: var(--primary-color); color: #fff; }
.cookie-btn-decline { background-color: #4a637e; color: var(--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: 600px) {
    .checklist-grid { grid-template-columns: 1fr 1fr; }
    .steps-container { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .section { padding: 80px 0; }
    .container { padding: 0 24px; }
    .hamburger { display: none; } /* Hide on desktop */

    .hero-container {
        grid-template-columns: 45% 55%;
        gap: 5%;
        padding: 0;
        max-width: none;
    }
    .hero-content {
        padding-left: calc((100vw - 1200px) / 2 + 24px);
        text-align: left;
    }
    .hero-subtitle { margin-left: 0; }
    .hero-image-clipper {
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
        height: 100%;
        max-width: none;
    }
    .hero-image { border-radius: 0; }
    
    .benefits-grid-asymm {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }
    .benefit-card-large:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
    .benefit-card-small:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
    .benefit-card-small:nth-child(3) { grid-column: 3 / 4; grid-row: 1 / 2; }
    .benefit-card-large:nth-child(4) { grid-column: 2 / 4; grid-row: 2 / 3; }
    .benefit-card-small:nth-child(5) { display: none; } /* Hide for a 4-card layout on desktop or adjust */
    
    .numbered-section {
        flex-direction: row;
        gap: 48px;
        align-items: center;
    }
    .numbered-section.reverse { flex-direction: row-reverse; }
    .numbered-section-number { align-self: center; }
    .numbered-section-content { flex: 1; }

    .image-content-block { grid-template-columns: 1fr 1fr; }
    .image-content-block.reverse { grid-template-columns: 1fr 1fr; }
    .image-content-block.reverse .image-wrapper { order: 2; }
    .image-content-block.reverse .content-wrapper { order: 1; }
    
    .values-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 60% 1fr; }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    .steps-container { grid-template-columns: repeat(4, 1fr); }
}

@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; }
}