/*
  Color Palette: Graphite & Copper
  - Dark Background: #1a1a1a
  - Lighter Background: #2c2c2c
  - Primary Accent (Copper): #b87333
  - Secondary Accent (Gold): #d4af37
  - Text Color: #e0e0e0
  - Subtle Text: #999999
*/

:root {
    --bg-dark: #1a1a1a;
    --bg-light: #2c2c2c;
    --color-primary: #b87333;
    --color-secondary: #d4af37;
    --color-text: #e0e0e0;
    --color-text-muted: #999999;
    --border-color: #444444;
}

/* --- General & Typography --- */
body {
    background-color: var(--bg-dark);
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0;
    line-height: 1.7;
    font-size: clamp(16px, 1.5vw, 18px);
}

h1, h2, h3, h4 {
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--color-secondary); }

p { margin-bottom: 1rem; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout & Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(60px, 10vw, 100px) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 24px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
    color: var(--color-text-muted);
}

/* --- Header --- */
.site-header {
    position: relative;
    padding: 15px 10px;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.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: #ffffff;
}
.logo:hover { 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 {
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}
.desktop-nav a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px; /* Adjust based on 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(--bg-light);
    border-bottom: 1px solid var(--border-color);
}
.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 li:last-child { border-bottom: none; }
.mobile-nav a { font-size: 18px; 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: 14px 32px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}
.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.2);
}
.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

/* --- Hero Section (Diagonal Split) --- */
.hero-diagonal {
    display: flex;
    min-height: 80vh;
    width: 100%;
    overflow: hidden;
}
.hero-content {
    width: 50%;
    display: flex;
    align-items: center;
    padding-right: 2rem;
}
.hero-content .container { padding-left: 24px; }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-muted);
    max-width: 550px;
    margin-bottom: 2rem;
}
.hero-image-pane {
    width: 50%;
    background: url('img/bg.jpg') no-repeat center center/cover;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
@media (max-width: 992px) {
    .hero-diagonal { flex-direction: column; min-height: auto; }
    .hero-content, .hero-image-pane { width: 100%; }
    .hero-content { padding: 80px 0; text-align: center; }
    .hero-content .container { padding: 0 24px; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-image-pane { min-height: 300px; clip-path: none; }
}

/* --- Benefits Horizontal Scroll --- */
.benefits-hscroll-section { background-color: var(--bg-light); }
.benefits-hscroll-wrapper {
    overflow-x: auto;
    padding: 24px 0 48px 0;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.benefits-hscroll-wrapper::-webkit-scrollbar { display: none; }
.benefits-hscroll-inner {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 24px;
}
.benefit-card-h {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 28px;
    width: 320px;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.card-h-icon {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 16px;
}
.card-h-title { margin-bottom: 8px; }

/* --- Expert Block --- */
.expert-block-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
}
.expert-image {
    border-radius: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.expert-quote-content blockquote {
    border-left: 3px solid var(--color-primary);
    padding-left: 24px;
    margin: 0 0 24px 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text);
}
.expert-name {
    display: block;
    font-weight: bold;
    color: #ffffff;
}
.expert-title {
    color: var(--color-text-muted);
}
@media (max-width: 768px) {
    .expert-block-layout { grid-template-columns: 1fr; }
    .expert-image-container { order: -1; }
}

/* --- Numbered Steps --- */
.numbered-steps-section { background-color: var(--bg-light); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.step-item {
    display: flex;
    gap: 24px;
    background-color: var(--bg-dark);
    padding: 24px;
    border-radius: 28px;
    border: 1px solid var(--border-color);
}
.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-primary);
    line-height: 1;
}
.step-content h3 { margin-bottom: 8px; }
.step-content p { margin-bottom: 0; color: var(--color-text-muted); }
@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; }
}

/* --- 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-bottom: 1px solid var(--border-color);
}
.comparison-table thead {
    background-color: var(--bg-light);
}
.comparison-table th {
    font-size: 1.1rem;
    color: #ffffff;
}
.comparison-table td:nth-child(2), .comparison-table td:nth-child(3) { text-align: center; }
.comparison-table tbody tr:hover { background-color: var(--bg-light); }
.comparison-table td:first-child { font-weight: bold; }

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    padding: 60px 0;
}
.cta-content {
    text-align: center;
    color: #111;
}
.cta-content h2 { color: #000; }
.cta-banner .btn-secondary {
    background-color: #fff;
    color: var(--color-primary);
    border-color: #fff;
}
.cta-banner .btn-secondary:hover {
    background-color: transparent;
    color: #fff;
}

/* --- Footer --- */
.site-footer {
    background-color: #111111 !important; /* Prevent translator override */
    color: var(--color-text-muted) !important;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}
.footer-about .logo { margin-bottom: 16px; display: block; }
.footer-about p { font-size: 0.9rem; }
.site-footer h4 {
    color: #ffffff !important;
    margin-bottom: 16px;
    font-size: 1rem;
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a {
    color: var(--color-text-muted) !important;
    font-size: 0.9rem;
}
.site-footer ul a:hover { color: var(--color-primary) !important; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
}

/* --- Program Page: Numbered Sections --- */
.page-hero {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}
.page-title { margin-bottom: 16px; }
.page-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-muted);
}
.numbered-section {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 80px;
}
.numbered-section.reverse { flex-direction: row-reverse; }
.numbered-section-decorator {
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: bold;
    color: rgba(184, 115, 51, 0.2);
    line-height: 1;
    flex-shrink: 0;
}
.numbered-section-content h2 { margin-bottom: 16px; }
.content-image {
    border-radius: 28px;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .numbered-section, .numbered-section.reverse {
        flex-direction: column;
        gap: 16px;
    }
    .numbered-section-decorator { font-size: 3rem; }
}

/* --- Mission Page --- */
.mission-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: flex-start;
}
.mission-image-container { position: sticky; top: 100px; }
.mission-image { border-radius: 28px; }
.mission-image-caption {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 16px;
}
.values-section { background-color: var(--bg-light); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.value-card {
    background-color: var(--bg-dark);
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--border-color);
}
@media (max-width: 992px) {
    .mission-layout { grid-template-columns: 1fr; }
    .mission-image-container { position: static; }
}

/* --- Contact Page --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}
.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: calc(100% - 28px);
    padding: 14px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    color: var(--color-text);
    font-size: 1rem;
}
.contact-form textarea { border-radius: 28px; }
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}
.form-submit-btn { width: 100%; }
.contact-details-container h2 { margin-bottom: 24px; }
.contact-info-block { margin-bottom: 24px; }
.contact-info-block h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.contact-info-block p { margin: 0; }
@media (max-width: 992px) {
    .contact-layout { grid-template-columns: 1fr; }
}

/* --- Legal & Thank You Pages --- */
.legal-content h1, .legal-content h2 { margin-bottom: 16px; }
.legal-content p, .legal-content ul { margin-bottom: 24px; }
.legal-content ul { padding-left: 20px; }

.thank-you-section { text-align: center; padding: 100px 0; }
.thank-you-icon {
    font-size: 4rem;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #fff;
    margin: 0 auto 24px;
}
.next-steps {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border-color);
}
.next-steps-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background-color: var(--bg-light);
    color: var(--color-text);
    border-top: 1px solid var(--border-color);
    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;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
#cookie-banner.hidden { transform: translateY(120%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }
#cookie-banner a { text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}
.cookie-btn-accept { background-color: var(--color-primary); color: #fff; }
.cookie-btn-accept:hover { background-color: var(--color-secondary); }
.cookie-btn-decline { background-color: #555; color: #fff; }
.cookie-btn-decline:hover { background-color: #777; }

@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; }
}