/* 
    Color Palette: Contrast (Black & Gold)
    --color-background: #1A1A1A; (Dark Charcoal)
    --color-primary: #F4D03F; (Vibrant Gold)
    --color-text: #EAEAEA; (Light Grey/Off-white)
    --color-text-muted: #999999; (Muted Grey)
    --color-accent: #D4AF37; (Darker Gold for accents)
    --color-surface: #2C2C2C; (Slightly lighter surface)
*/

:root {
    --color-background: #1A1A1A;
    --color-primary: #F4D03F;
    --color-text: #EAEAEA;
    --color-text-muted: #999999;
    --color-accent: #D4AF37;
    --color-surface: #2C2C2C;
    --color-white: #FFFFFF;
    --font-family-base: 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
}

/* --- Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

h1, h2, h3, h4 {
    margin: 0 0 1rem 0;
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1rem 0; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--color-surface);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    color: var(--color-white);
    margin-bottom: 16px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-surface);
}

.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-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);
    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);
    font-weight: 500;
}

.desktop-nav a:hover {
    color: var(--color-primary);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--color-surface);
}

.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(--color-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: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-background);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-background);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
}

/* --- Hero Section (Version 4) --- */
.hero-section-v4 {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content-card {
    background-color: rgba(44, 44, 44, 0.9);
    backdrop-filter: blur(8px);
    padding: 40px;
    border-radius: 8px;
    max-width: 650px;
    border: 1px solid var(--color-surface);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-title {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

/* --- Stats Section --- */
.stats-section {
    background-color: var(--color-surface);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-primary);
    display: block;
}

.stat-item .stat-label {
    color: var(--color-text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Benefits Grid (2x2) --- */
.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.benefit-card-v4 {
    background-color: var(--color-surface);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-v4:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.benefit-card-v4 .card-title {
    color: var(--color-primary);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .benefits-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

/* --- Image and Text Wrap Section --- */
.wrap-content-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.wrap-image img {
    border-radius: 8px;
}

@media (max-width: 992px) {
    .wrap-content-layout {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ Accordion --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-surface);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 0 20px 0;
    color: var(--color-text-muted);
}

.faq-toggle:checked ~ .faq-question::after {
    transform: rotate(45deg);
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 300px;
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--color-surface);
    padding: 60px 0;
}

.cta-title {
    color: var(--color-primary);
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* --- Footer --- */
.site-footer {
    background-color: #111 !important;
    color: var(--color-text-muted) !important;
    padding: 60px 0 20px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    color: var(--color-white) !important;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-text-muted) !important;
}

.footer-links a:hover {
    color: var(--color-primary) !important;
}

.footer-bottom {
    border-top: 1px solid var(--color-surface);
    padding-top: 20px;
    text-align: center;
}

/* --- Page Specific Styles --- */
.page-header {
    padding: 60px 0;
    text-align: center;
    background-color: var(--color-surface);
}

.page-title { color: var(--color-primary); }
.page-subtitle { max-width: 600px; margin: 0 auto; color: var(--color-text-muted); }

/* Program Page: Numbered Sections */
.numbered-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.numbered-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.numbered-section.reverse .numbered-content {
    order: 2;
}

.numbered-section.reverse .numbered-image {
    order: 1;
}

.numbered-content {
    position: relative;
}

.section-number {
    font-size: 6rem;
    font-weight: bold;
    color: rgba(244, 208, 63, 0.1);
    position: absolute;
    top: -50px;
    left: -30px;
    z-index: -1;
    line-height: 1;
}

.section-title-small {
    font-size: 2rem;
    margin-bottom: 20px;
}

.numbered-image img {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    height: 400px;
}

@media (max-width: 992px) {
    .numbered-section, .numbered-section.reverse {
        grid-template-columns: 1fr;
    }
    .numbered-section.reverse .numbered-content,
    .numbered-section.reverse .numbered-image {
        order: initial;
    }
}

/* Mission Page: Split Layout & Values */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.split-image img {
    border-radius: 8px;
}

@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: var(--color-background);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.value-item h3 {
    color: var(--color-primary);
}

/* Contact Page */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background-color: var(--color-surface);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.contact-info-card h4 {
    color: var(--color-primary);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-surface);
    padding: 40px;
    border-radius: 8px;
}

.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-radius: 5px;
    border: 1px solid #555;
    background-color: var(--color-background);
    color: var(--color-text);
    font-size: 1rem;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Legal & Thank You Pages */
.legal-content ul {
    padding-left: 20px;
}
.legal-content li {
    margin-bottom: 10px;
}
.legal-content h2 {
    margin-top: 40px;
    color: var(--color-primary);
}

.thank-you-section {
    padding: 100px 0;
}
.thank-you-title {
    font-size: 3.5rem;
    color: var(--color-primary);
}
.thank-you-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
}
.next-steps {
    margin-top: 60px;
    border-top: 1px solid var(--color-surface);
    padding-top: 40px;
}
.quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* --- 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(--color-surface);
    border-top: 1px solid #444;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }
.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(--color-primary);
    color: var(--color-background);
}
.cookie-btn-decline {
    background-color: #555;
    color: var(--color-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; }
}