/* 
   Color Palette: Graphite-Copper
   - Dark BG: #1a1a1a
   - Light BG: #f4f4f4
   - Text Dark: #1a1a1a
   - Text Light: #e5e5e5
   - Accent Primary: #e67e22
   - Accent Secondary: #d35400
   - Border Color: #333333
*/

:root {
    --dark-bg: #1a1a1a;
    --light-bg: #f4f4f4;
    --text-dark: #1a1a1a;
    --text-light: #e5e5e5;
    --accent-primary: #e67e22;
    --accent-secondary: #d35400;
    --border-color: #333333;
    --border-light: #ddd;
    --glass-bg: rgba(40, 40, 40, 0.5);
}

/* --- Global Styles & Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--light-bg);
    color: var(--text-dark);
    font-size: 16px;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* --- Layout Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 48px 0;
}

.dark-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.dark-section a {
    color: var(--accent-primary);
}

.dark-section a:hover {
    color: var(--text-light);
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: #666;
}

.dark-section .section-intro {
    color: #ccc;
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
}

.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(--text-light);
    z-index: 100;
}

.logo:hover {
    color: var(--accent-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(--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;
}

.desktop-nav a {
    color: var(--text-light);
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.desktop-nav a:hover {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 65px; /* header height */
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    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 var(--border-color);
}

.mobile-nav a {
    color: var(--text-light);
    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); }
}

.cta-content {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    border-radius: 50px; /* pill style */
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    margin-top: 10px;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--text-light);
    border-color: var(--accent-primary);
}

.btn-primary:hover {
    background-color: var(--accent-secondary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.btn-secondary:hover {
    background-color: var(--accent-primary);
    color: var(--text-light);
}


/* --- Hero Section (Fullscreen Center) --- */
.hero-section {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-size: clamp(36px, 7vw, 64px);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 30px;
}

/* --- Benefits Section (2x2 Grid) --- */
.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: #fff;
    padding: 28px;
    border-radius: 28px; /* pill style */
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.card-title {
    color: var(--accent-secondary);
    font-size: 1.5rem;
}

/* --- Comparison Table --- */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

th, td {
    padding: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

thead {
    background-color: var(--accent-secondary);
    color: var(--text-light);
}

tbody tr:nth-child(even) {
    background-color: #2a2a2a;
}

.check-mark { color: #2ecc71; font-weight: bold; }
.cross-mark { color: #e74c3c; font-weight: bold; }

/* --- Stats Bar Section --- */
.stats-bar-section {
    background-color: var(--accent-primary);
    color: var(--text-light);
    padding: 32px 0;
}

.stats-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 1rem;
    max-width: 250px;
}

/* --- Checklist Block --- */
.checklist-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.checklist-image {
    border-radius: 28px;
    object-fit: cover;
    height: 100%;
}
.checklist {
    list-style: none;
    padding-left: 0;
}
.checklist li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.1rem;
}
.checklist li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-weight: bold;
}

/* --- Accordion FAQ --- */
.accordion details {
    border: 1px solid var(--border-color);
    border-radius: 28px;
    margin-bottom: 10px;
    padding: 16px;
}
.accordion summary {
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* Remove default marker */
    position: relative;
    padding-right: 25px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
    content: '+';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: transform 0.2s;
}
.accordion details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.accordion p {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* --- Program Page: Horizontal Tabs --- */
.tabs-container {
    margin-top: 40px;
}
.tabs-container input[type="radio"] {
    display: none;
}
.tabs-nav {
    display: flex;
    flex-wrap: wrap;
}
.tab-label {
    display: inline-block;
    padding: 12px 24px;
    margin-right: 5px;
    margin-bottom: -1px;
    border: 1px solid var(--border-light);
    border-radius: 15px 15px 0 0;
    cursor: pointer;
    background: #eee;
    transition: all 0.3s;
}
.tab-label:hover {
    background: #fdfdfd;
}
#tab1:checked ~ .tabs-nav label[for="tab1"],
#tab2:checked ~ .tabs-nav label[for="tab2"],
#tab3:checked ~ .tabs-nav label[for="tab3"],
#tab4:checked ~ .tabs-nav label[for="tab4"] {
    background: #fff;
    border-bottom: 1px solid #fff;
    color: var(--accent-primary);
    font-weight: bold;
}
.tabs-body {
    border: 1px solid var(--border-light);
    border-radius: 0 15px 15px 15px;
}
.tab-content {
    display: none;
    padding: 32px;
}
#tab1:checked ~ .tabs-body #content1,
#tab2:checked ~ .tabs-body #content2,
#tab3:checked ~ .tabs-body #content3,
#tab4:checked ~ .tabs-body #content4 {
    display: block;
}

/* --- Mission Page: Vertical Storytelling --- */
.story-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 64px;
}
.story-image {
    border-radius: 28px;
}
.story-title {
    color: var(--accent-secondary);
}

/* --- Contact Page --- */
.contact-layout-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.contact-sidebar .contact-info-block {
    margin-bottom: 24px;
}
.contact-sidebar h3 {
    color: var(--accent-secondary);
    border-bottom: 2px solid var(--accent-primary);
    padding-bottom: 8px;
    display: inline-block;
    margin-bottom: 12px;
}

/* --- Forms --- */
.contact-form {
    max-width: 800px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 50px; /* pill style */
    font-size: 1rem;
}
.form-group textarea {
    border-radius: 28px; /* pill style */
    resize: vertical;
}
.form-btn {
    width: 100%;
}
.contact-faq { margin-top: 40px; }
.contact-faq details {
    border: 1px solid var(--border-light);
    border-radius: 28px;
    padding: 16px;
    margin-bottom: 10px;
}
.contact-faq summary { font-weight: bold; cursor: pointer; }
.contact-faq p { margin-top: 10px; }

/* --- Footer --- */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--text-light) !important; /* Prevent translator issues */
    padding: 48px 0 0 0;
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.footer-column h3 {
    color: var(--accent-primary);
    margin-bottom: 16px;
}
.footer-nav {
    list-style: none;
}
.footer-nav li {
    margin-bottom: 8px;
}
.footer-nav a {
    color: var(--text-light);
}
.footer-nav a:hover {
    color: var(--accent-primary);
}
.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 32px;
    border-top: 1px solid var(--border-color);
}

/* --- Thank You Page --- */

.text-center { text-align: center; }
.thank-you-title { font-size: 3rem; color: var(--accent-secondary); }
.next-steps { margin-top: 40px; }
.next-steps-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    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: var(--glass-bg);
    color: var(--text-light);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#cookie-banner a { font-weight: bold; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid var(--accent-primary);
    transition: all 0.3s;
}
.cookie-btn-accept { background-color: var(--accent-primary); color: var(--text-light); }
.cookie-btn-accept:hover { background-color: var(--accent-secondary); }
.cookie-btn-decline { background-color: transparent; color: var(--text-light); }
.cookie-btn-decline:hover { background-color: rgba(255,255,255,0.1); }

/* --- Media Queries (Mobile First) --- */
@media (min-width: 600px) {
    .benefits-grid-2x2 { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
    .stats-container { flex-direction: row; justify-content: space-around; }
}

@media (min-width: 768px) {
    .section { padding: 80px 0; }
    .story-block { grid-template-columns: 1fr 1fr; }
    .story-block.reverse .story-image-container { order: 2; }
    .story-block.reverse .story-text-container { order: 1; }
    .contact-layout-container { grid-template-columns: 300px 1fr; }
    .checklist-wrapper { grid-template-columns: 1fr 1.2fr; }
}

@media (min-width: 992px) {
    .footer-container { grid-template-columns: repeat(4, 1fr); }
    .values-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}
.thank-you-section { padding: 130px 0; }