/* Color Palette: Graphite & Copper */
:root {
    --color-dark-bg: #252068;
    --color-light-bg: #F4F4F4;
    --color-primary: #E87A00;
    --color-secondary: #4A4A4A;
    --color-text-light: #EAEAEA;
    --color-text-dark: #222222;
    --color-border: rgba(255, 255, 255, 0.1);
    --font-primary: 'Helvetica Neue', Arial, sans-serif;
    --shadow-dramatic: 0 24px 64px rgba(0, 0, 0, 0.3);
    --shadow-dramatic-hover: 0 32px 80px rgba(0, 0, 0, 0.4);
    --border-radius: 12px;
}

/* --- Global Styles & Resets --- */
body {
    margin: 0;
    font-family: var(--font-primary);
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
    line-height: 1.7;
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 16px 0;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.5rem); }

p {
    margin: 0 0 16px 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

/* --- Layout & Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 64px 0;
}

.dark-section {
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
}
.dark-section .section-title,
.dark-section .section-title-left {
    color: var(--color-text-light);
}

.light-section {
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
}

.text-center {
    text-align: center;
}

.section-title, .section-title-left {
    text-align: center;
    margin-bottom: 24px;
    color: var(--color-text-dark);
}
.section-title-left {
    text-align: left;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 48px auto;
    text-align: center;
    font-size: 1.1rem;
    color: #666;
}
.dark-section .section-intro {
    color: #bbb;
}

/* --- Header & Navigation --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
}

.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(--color-text-light);
}
.logo:hover {
    text-decoration: none;
    color: var(--color-primary);
}

.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(--color-text-light);
    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(--color-text-light);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}
.desktop-nav a:hover::after {
    width: 100%;
}
.desktop-nav a:hover {
    text-decoration: none;
    color: var(--color-primary);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--color-dark-bg);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav li a {
    color: var(--color-text-light);
    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: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}
.btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
}
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}
.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(232, 122, 0, 0.3);
    color: var(--color-text-light);
}
.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}
.btn-secondary:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    color: var(--color-text-light);
}
.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}
.btn-full-width {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
}

/* --- Hero Section (Fullscreen) --- */
.hero-fullscreen {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: var(--color-text-light);
    padding: 20px;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.hero-content-center {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-title {
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* --- Benefits Section --- */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.benefit-card {
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dramatic);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dramatic-hover);
}
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-dark);
}
.light-section .glass-effect {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.card-title {
    color: var(--color-primary);
    margin-bottom: 12px;
}

/* --- Two-Column Layout --- */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.two-col-content .checklist {
    list-style: none;
    padding-left: 0;
}
.two-col-content .checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}
.two-col-content .checklist li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* --- CTA Banner --- */
.cta-banner-section {
    padding: 64px 0;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    background: var(--color-secondary);
}
.cta-banner-content {
    text-align: center;
    color: var(--color-text-light);
}
.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}
.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* --- Testimonials --- */
.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-item {
    background-color: var(--color-secondary);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dramatic);
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ccc;
    margin-right: 16px;
}
.testimonial-name {
    font-weight: bold;
    display: block;
}
.testimonial-rating {
    color: var(--color-primary);
}
.testimonial-text {
    font-style: italic;
    color: #ddd;
    margin: 0;
}

/* --- 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: center;
    border-bottom: 1px solid #ddd;
}
.comparison-table th {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}
.comparison-table td:first-child {
    text-align: left;
    font-weight: bold;
}
.check-mark {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.5rem;
}
.cross-mark {
    color: #c0392b;
    font-weight: bold;
    font-size: 1.5rem;
}

/* --- Program Page: Numbered Sections --- */
.page-header-section {
    padding: 80px 0;
    text-align: center;
}
.page-title {
    margin-bottom: 16px;
}
.page-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ccc;
}
.numbered-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 64px;
    align-items: flex-start;
}
.numbered-section-number {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: bold;
    color: var(--color-primary);
    line-height: 1;
    opacity: 0.2;
}
.numbered-section-title {
    color: var(--color-primary);
}
.cta-section-alt {
    padding: 64px 0;
}
.cta-section-alt .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

/* --- Mission Page: Storytelling --- */
.story-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 64px;
}
.story-title {
    color: var(--color-primary);
}
.values-section {
    padding: 64px 0;
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.value-card {
    background-color: var(--color-secondary);
    padding: 24px;
    text-align: center;
    border-radius: var(--border-radius);
}

/* --- Contact Page --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.form-title, .info-title {
    margin-bottom: 24px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}
.contact-info-item {
    margin-bottom: 24px;
}
.contact-info-item h3 {
    color: var(--color-primary);
}

/* --- Legal & Thank You Pages --- */
.legal-page h1, .thank-you-page h1 {
    margin-bottom: 32px;
}
.legal-page h2 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--color-primary);
}
.thank-you-page {
    padding: 80px 0;
}
.thank-you-title { color: var(--color-primary); }
.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(--color-dark-bg) !important;
    color: var(--color-text-light) !important;
    padding: 48px 0 24px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
.footer-title {
    color: var(--color-primary) !important;
    margin-bottom: 16px;
}
.site-footer p, .site-footer a {
    color: #ccc !important;
}
.site-footer a:hover {
    color: var(--color-primary) !important;
    text-decoration: underline;
}
.footer-copyright {
    text-align: center;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}
.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
}

/* --- 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: var(--color-secondary);
    color: var(--color-text-light);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--color-primary); font-weight: bold; }
.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: 8px;
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}
.cookie-btn-decline {
    background-color: #555;
    color: #fff;
}

/* --- Media Queries (Mobile-First) --- */
@media (min-width: 768px) {
    .section { padding: 80px 0; }
    .container { padding: 0 24px; }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .two-col-layout { grid-template-columns: 1fr 1fr; }
    .two-col-layout.reverse .two-col-image { order: 2; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .numbered-section {
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }
    .numbered-section.reverse { flex-direction: row-reverse; }
    .numbered-section-number { flex-shrink: 0; }
    .cta-section-alt .container { grid-template-columns: 2fr 1fr; }
    .story-block { grid-template-columns: 1fr 1fr; }
    .story-block.reverse .story-image { order: -1; }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-layout { grid-template-columns: 2fr 1fr; }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 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; }
}