/* 
Color Palette: Warm Amber & Graphite
Primary: #E67E22 (Carrot Orange)
Secondary: #D35400 (Pumpkin Orange)
Dark BG: #1a1a1a
Light BG: #fdfdfd
Text Dark: #2c2c2c
Text Light: #f0f0f0
*/

:root {
    --primary-color: #E67E22;
    --secondary-color: #D35400;
    --dark-bg: #1a1a1a;
    --light-bg: #fdfdfd;
    --text-dark: #2c2c2c;
    --text-light: #f0f0f0;
    --border-light: #e0e0e0;
    --border-dark: #333333;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

/* --- Global Resets & Typography --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: var(--light-bg);
    color: var(--text-dark);
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 4vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style-position: inside;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout & Helpers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.section-dark a {
    color: #fff;
}

.section-light {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-content h1, .text-content h2 {
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.dramatic-shadow {
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    transition: all 0.3s ease;
}

.dramatic-shadow:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.30);
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--dark-bg);
    color: var(--text-light);
    border-bottom: 1px solid var(--border-dark);
}

.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-light);
}

.logo:hover {
    color: var(--primary-color);
}

.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;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.desktop-nav a:hover::after {
    width: 100%;
}

.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-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-dark);
}
.mobile-nav li:last-child {
    border-bottom: none;
}
.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); }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}
.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--light-bg);
}

/* --- Hero Section (Bold Text Only) --- */
.hero-bold-text-only {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.hero-bold-text-only .container {
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text-light);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 32px;
}

/* --- Benefits Section (3 Col) --- */
.benefits-grid-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.benefit-card {
    background-color: var(--light-bg);
    border: 1px solid var(--border-light);
    padding: 32px;
}

.card-title {
    color: var(--primary-color);
    margin-bottom: 16px;
}

/* --- Expert Block --- */
.expert-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.expert-image-placeholder {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}
.expert-image {
    width: 100%;
    height: auto;
}

.expert-quote {
    font-size: 1.25rem;
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    padding-left: 24px;
    margin-bottom: 24px;
}

.expert-signature {
    text-align: right;
}

/* --- Icon Features Grid --- */
.icon-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* --- Quote Highlight Section --- */
.quote-highlight-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}
.quote-marks {
    font-size: 5rem;
    line-height: 1;
    opacity: 0.5;
    display: block;
}
.quote-text {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 1rem;
}
.quote-author {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- Checklist Block --- */
.checklist-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.checklist {
    list-style: none;
    padding: 0;
}
.checklist li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}
.checkmark {
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2rem;
}

/* --- Page Header --- */
.page-header-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}
.image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}
.page-header-section .container {
    position: relative;
    z-index: 2;
}
.page-title {
    color: #fff;
}
.page-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- Program Page: Timeline --- */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline-container::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--border-light);
    top: 0;
    bottom: 0;
    left: 20px;
}
.timeline-item {
    padding: 10px 40px;
    padding-left: 60px;
    position: relative;
}
.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--light-bg);
    border: 4px solid var(--primary-color);
    top: 24px;
    left: 11px;
    z-index: 1;
}
.timeline-content {
    padding: 24px;
    background-color: #fff;
    position: relative;
    border: 1px solid var(--border-light);
}
.timeline-title {
    color: var(--secondary-color);
}

/* --- Mission Page: Values Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.value-card {
    background-color: #2a2a2a;
    padding: 24px;
    border: 1px solid var(--border-dark);
}

/* --- Contact Page --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.form-title {
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-input, .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    background-color: #fff;
    font-size: 1rem;
    font-family: inherit;
    border-radius: 0;
}
.form-input:focus, .form-textarea:focus {
    outline: 2px solid var(--primary-color);
    border-color: var(--primary-color);
}
.btn-full-width {
    width: 100%;
}
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-info-block {
    background-color: #fff;
    padding: 24px;
    border: 1px solid var(--border-light);
}
.info-title {
    color: var(--secondary-color);
    margin-bottom: 8px;
}

/* --- Thank You Page --- */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.thank-you-title {
    color: var(--primary-color);
}
.next-steps {
    margin: 40px 0;
    padding: 24px;
    border: 1px solid var(--border-light);
}
.next-steps-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}
.back-home-btn {
    margin-top: 24px;
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--secondary-color);
}
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.cta-title {
    color: #fff;
}
.cta-text {
    max-width: 600px;
    margin-bottom: 24px;
}

/* --- Footer --- */
.site-footer {
    padding: 60px 0 20px 0;
    background-color: var(--dark-bg) !important;
    color: var(--text-light) !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-light) !important;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .footer-column p, .footer-column a {
    color: #a0a0a0 !important;
}

.footer-links a:hover {
    color: var(--primary-color) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-dark);
    font-size: 0.9rem;
    color: #a0a0a0 !important;
}

/* --- 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: 1px solid var(--border-dark);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }
#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 16px;
    border-radius: 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
}
.cookie-btn-accept {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
}
.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

/* --- Media Queries (Mobile First) --- */
@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; }
}

@media (min-width: 768px) {
    .section-padding { padding: 100px 0; }
    .benefits-grid-3col { grid-template-columns: repeat(3, 1fr); }
    .expert-block { grid-template-columns: 300px 1fr; gap: 48px; }
    .icon-features-grid { grid-template-columns: repeat(3, 1fr); }
    .checklist-block { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .contact-layout { grid-template-columns: 2fr 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .next-steps-links { flex-direction: row; justify-content: center; }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}