/*
* Design System: Minimalist
* Border Style: Rounded
* Shadow Style: Flat
* Color Mode: Mixed
* Color Palette: Warm Terracotta
* Colors: #E67E22 (accent), #1a1a1a (dark), #fdfdfd (light), #333333 (text-dark), #e0e0e0 (text-light)
*/

:root {
    --accent-color: #E67E22;
    --dark-bg: #1a1a1a;
    --light-bg: #fdfdfd;
    --dark-text: #333333;
    --light-text: #e0e0e0;
    --border-color: #ddd;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --border-radius-card: 12px;
    --border-radius-btn: 8px;
}

/* --- Global Styles & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
    font-size: clamp(16px, 1.5vw, 18px);
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-top: 0;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout Components --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 64px 0;
}

.section-light {
    background-color: #f8f9fa;
}

.section-dark,
.section-dark-alt {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    text-align: center;
    margin-bottom: 24px;
}

.section-intro, .page-subtitle {
    max-width: 800px;
    margin: 0 auto 48px auto;
    text-align: center;
    color: #6c757d;
}

.section-dark .section-intro, 
.section-dark-alt .page-subtitle {
    color: var(--light-text);
    opacity: 0.8;
}

.page-title {
    font-size: clamp(36px, 6vw, 56px);
    text-align: center;
    margin-bottom: 16px;
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--dark-bg);
}

.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(--light-text);
}

.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(--light-text);
    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(--light-text);
    font-weight: 500;
}

.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(--dark-bg);
}

.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(--light-text);
    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: var(--border-radius-btn);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--light-bg);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-text);
    border-color: var(--border-color);
}

.cta-banner-section .btn-secondary {
    color: var(--light-text);
    border-color: var(--light-text);
}

.btn-secondary:hover {
    background-color: var(--dark-text);
    color: var(--light-bg);
    border-color: var(--dark-text);
}

.cta-banner-section .btn-secondary:hover {
    background-color: var(--light-bg);
    color: var(--dark-text);
    border-color: var(--light-bg);
}


/* --- Hero Section (Asymmetric) --- */
.hero-section-asymmetric {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.hero-asymmetric-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 32px;
}

.hero-asymmetric-content {
    z-index: 2;
}

.hero-title {
    font-size: clamp(36px, 7vw, 64px);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-asymmetric-image-wrapper {
    position: relative;
}

.hero-asymmetric-image {
    border-radius: var(--border-radius-card);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .hero-section-asymmetric {
        padding: 50px 0;
    }
    .hero-asymmetric-container {
        grid-template-columns: 1fr 1fr;
    }
    .hero-asymmetric-image-wrapper {
        position: absolute;
        right: -15%;
        top: 50%;
        transform: translateY(-50%);
        width: 60%;
        height: 120%;
        max-width: 800px;
    }
}

/* --- Benefits Section (Asymmetric Grid) --- */
.benefits-grid-asymmetric {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

.benefit-card-asymm {
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-card);
}

.benefit-card-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

@media (min-width: 768px) {
    .benefits-grid-asymmetric {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-card {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .benefits-grid-asymmetric {
        grid-template-columns: repeat(3, 1fr);
    }
    .featured-card {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
}

/* --- Stats Bar Section --- */
.stats-bar-section {
    background-color: var(--accent-color);
    color: var(--light-bg);
    padding: 48px 0;
}

.stats-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: clamp(40px, 6vw, 60px);
    font-weight: bold;
    display: block;
}

.stat-description {
    margin: 0;
    max-width: 250px;
}

@media (min-width: 768px) {
    .stats-bar-container {
        flex-direction: row;
        justify-content: space-around;
    }
}

/* --- Quote Highlight Section --- */
.quote-highlight {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 32px;
}

.quote-highlight::before {
    content: '“';
    font-size: 120px;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 0;
    line-height: 1;
}

.quote-text {
    font-size: clamp(22px, 3vw, 28px);
    font-style: italic;
    margin-bottom: 24px;
}

.quote-author {
    font-weight: bold;
    color: var(--dark-text);
}

/* --- CTA Banner Section --- */
.cta-banner-section {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 80px 0;
    text-align: center;
}

.cta-banner-title {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 16px;
}

.cta-banner-text {
    max-width: 600px;
    margin: 0 auto 32px auto;
    opacity: 0.9;
}

/* --- Comparison Table --- */
.comparison-table-wrapper {
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.comparison-table th, .comparison-table td {
    padding: 16px;
    text-align: left;
    border: 1px solid var(--border-color);
}
.comparison-table thead {
    background-color: #f8f9fa;
}
.comparison-table th {
    font-weight: bold;
}

/* --- Program Page: Numbered Sections --- */
.numbered-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 80px;
}
.numbered-section-number {
    font-size: 100px;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
    opacity: 0.3;
}
.numbered-section-title {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 16px;
}
.numbered-section-image {
    margin-top: 24px;
    border-radius: var(--border-radius-card);
}
@media (min-width: 768px) {
    .numbered-section {
        flex-direction: row;
        gap: 48px;
        align-items: flex-start;
    }
    .numbered-section.reverse {
        flex-direction: row-reverse;
    }
    .numbered-section-number {
        font-size: 120px;
    }
    .numbered-section-content {
        flex: 1;
    }
}

/* --- Mission Page: Grid Values --- */
.mission-story-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.mission-story-image img {
    border-radius: var(--border-radius-card);
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.value-card {
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-card);
}
.value-card-title {
    font-size: 20px;
    margin-bottom: 12px;
}
.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2em;
    font-style: italic;
    text-align: center;
    border-left: 3px solid var(--accent-color);
    padding-left: 24px;
}
@media (min-width: 768px) {
    .mission-story-container {
        grid-template-columns: 1fr 1.5fr;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Contact Page --- */
.contact-layout-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-btn);
    font-family: inherit;
    font-size: 16px;
}
.form-submit-btn {
    width: 100%;
}
.contact-info-block {
    margin-bottom: 24px;
}
.contact-info-title {
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 12px;
}
@media (min-width: 992px) {
    .contact-layout-split {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* --- Legal & Thank You Pages --- */
.text-content h1, .text-content h2 {
    margin-bottom: 16px;
    margin-top: 32px;
}
.text-content p, .text-content ul {
    margin-bottom: 16px;
}
.text-center { text-align: center; }
.thank-you-section { padding: 80px 0; }
.thank-you-title { font-size: clamp(32px, 5vw, 48px); }
.next-steps { margin-top: 48px; }
.next-steps-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 24px; }

/* --- Footer --- */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--light-text) !important;
    padding: 64px 0 0;
    font-size: 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.footer-column p, .footer-links li {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 16px;
    opacity: 1;
    color: var(--light-text) !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: var(--light-text) !important;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- 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(--light-text);
    border-top: 1px solid rgba(255,255,255,0.1);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 14px; }
#cookie-banner a { color: var(--accent-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: bold;
    font-size: 14px;
}
.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--light-bg);
}
.cookie-btn-decline {
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--light-text);
}
@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; }
}