/* sapphire-amber Color Palette */
/* #0A2B5C, #1A3E80, #E8A020, #F0F6FF */
:root {
    --color-primary: #0A2B5C;
    --color-secondary: #1A3E80;
    --color-accent: #E8A020;
    --bg-tint: #F0F6FF;
    --color-dark: #071730;
    --color-light: #FFFFFF;
    --color-text-dark: #202A38;
    --color-text-muted: #5F6C7D;
}

/* Base and Reset Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--color-text-dark);
    background-color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Bold Editorial Typography */
h1, h2, h3, h4 {
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(32px, 5vw, 64px);
}

h2 {
    font-size: clamp(24px, 3.5vw, 42px);
}

h3 {
    font-size: clamp(20px, 2.5vw, 28px);
}

p {
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

/* Pill Border Style & Subtle Shadows */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px; /* Pill style */
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07); /* Subtle shadow */
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.btn-block {
    display: block;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-accent);
    color: var(--color-dark);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 999px; /* Pill style */
    margin-bottom: 16px;
}

/* Containers & Sections */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-small {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 48px 16px;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 24px;
    }
}

.section-header {
    max-width: 700px;
    margin-bottom: 48px;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-secondary);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    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: 800;
    color: var(--color-light) !important;
    z-index: 100;
}

.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-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 .nav-list a {
    color: var(--color-light);
    font-weight: bold;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

.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;
    z-index: 99;
    background-color: var(--color-secondary);
}

.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-light);
    font-weight: bold;
    display: block;
}

@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);
    }
}

/* Mixed Color Mode Alternating Sections */
.benefits-section {
    background-color: var(--bg-tint);
}

.expert-section {
    background-color: var(--color-light);
}

.checklist-section {
    background-color: var(--bg-tint);
}

.quote-highlight-section {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.quote-highlight-section p {
    color: var(--color-light);
}

.twocol-image-section {
    background-color: var(--color-light);
}

/* Hero Section: Grid Overlap Layout */
.hero-overlap-section {
    background-color: var(--color-secondary);
    padding: 60px 16px;
    color: var(--color-light);
    position: relative;
}

.hero-overlap-section h1 {
    color: var(--color-light);
}

.hero-overlap-section p {
    color: rgba(255, 255, 255, 0.85);
}

.hero-overlap-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.hero-image-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-card {
    background-color: var(--color-primary);
    padding: 32px;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

@media (min-width: 1024px) {
    .hero-overlap-section {
        padding: 100px 24px;
    }

    .hero-overlap-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 0;
        position: relative;
    }

    .hero-image-wrapper {
        height: 550px;
        grid-column: 1;
        z-index: 1;
    }

    .hero-content-card {
        grid-column: 2;
        margin-left: -80px; /* Overlap effect */
        z-index: 2;
        position: relative;
        padding: 50px;
    }
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: var(--color-light);
    padding: 32px;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

/* Expert Section */
.expert-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: 28px;
}

@media (min-width: 768px) {
    .expert-wrapper {
        grid-template-columns: 0.8fr 1.2fr;
        padding: 50px;
    }
}

.expert-photo-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--color-primary);
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-light);
    font-size: 24px;
    font-weight: bold;
}

.expert-tag {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--color-accent);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.expert-quote-content blockquote {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 20px;
}

.expert-author {
    font-weight: bold;
    font-size: 18px;
    color: var(--color-text-dark);
}

.expert-role {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Checklist Section */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.checklist-item {
    display: flex;
    gap: 16px;
    background-color: var(--color-light);
    padding: 24px;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.check-icon {
    font-size: 24px;
    color: var(--color-accent);
    font-weight: bold;
    flex-shrink: 0;
}

/* Quote Highlight Section */
.quote-highlight-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.large-quote-mark {
    font-size: 80px;
    color: var(--color-accent);
    line-height: 1;
    display: block;
    margin-bottom: -20px;
}

.quote-highlight-text {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.quote-highlight-author {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent) !important;
}

/* Two Column Image and Text */
.twocol-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .twocol-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.twocol-image-side {
    border-radius: 28px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.twocol-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.styled-list {
    list-style: none;
    margin-bottom: 24px;
}

.styled-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.styled-list li::before {
    content: "•";
    color: var(--color-accent);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px;
}

/* Page Title Header */
.page-title-section {
    background-color: var(--color-secondary);
    color: var(--color-light);
    padding: 60px 16px;
}

.page-title-section h1 {
    color: var(--color-light);
}

.page-title-section p {
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* Program Layout: Horizontal Tabs (holistic angle) */
.tabs-section {
    background-color: var(--bg-tint);
}

.tabs {
    display: flex;
    flex-direction: column;
}

input[name="tabs"] {
    display: none;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    justify-content: center;
}

.tabs-nav label {
    padding: 12px 24px;
    background-color: var(--color-light);
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.tabs-nav label:hover {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.tab-panel {
    display: none;
    background-color: var(--color-light);
    padding: 32px;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

#t1:checked ~ .tabs-nav label[for="t1"],
#t2:checked ~ .tabs-nav label[for="t2"],
#t3:checked ~ .tabs-nav label[for="t3"],
#t4:checked ~ .tabs-nav label[for="t4"] {
    background-color: var(--color-primary);
    color: var(--color-light);
}

#t1:checked ~ #p1,
#t2:checked ~ #p2,
#t3:checked ~ #p3,
#t4:checked ~ #p4 {
    display: block;
}

.tab-panel-content h3 {
    margin-bottom: 16px;
}

/* Visual Program Image Block */
.visual-img-container {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.program-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,43,92,0.9), rgba(10,43,92,0));
    padding: 40px;
    color: var(--color-light);
}

.visual-img-overlay h3 {
    color: var(--color-light);
}

.visual-img-overlay p {
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* FAQ Accordion Block */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-tint);
    border-radius: 28px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
}

.faq-item summary {
    padding: 24px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-primary);
    outline: none;
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent);
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-content {
    padding: 0 24px 24px 24px;
}

.faq-content p {
    margin: 0;
}

/* Mission Layout: Split Layout (transformation angle) */
.split-mission-section {
    background-color: var(--color-light);
}

.split-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .split-layout-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.split-image-side {
    border-radius: 28px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.split-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-list-wrapper {
    margin-top: 32px;
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: 28px;
}

.values-styled-list {
    list-style: none;
    margin-top: 16px;
}

.values-styled-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 24px;
}

.values-styled-list li::before {
    content: "★";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    top: 0;
}

/* Project Manifesto Section */
.manifesto-section {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.manifesto-section h2 {
    color: var(--color-light);
}

.manifesto-section p {
    color: rgba(255,255,255,0.85);
}

.manifesto-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Layout: Form Left (60%), Contacts Right (40%) */
.contact-main-section {
    background-color: var(--bg-tint);
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .contact-split-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.contact-form-side {
    background-color: var(--color-light);
    padding: 32px;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.educational-form .form-group {
    margin-bottom: 20px;
}

.educational-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--color-primary);
}

.educational-form input,
.educational-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(10,43,92,0.15);
    border-radius: 50px; /* Pill style */
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.educational-form textarea {
    border-radius: 28px; /* Slightly less round for multiline */
}

.educational-form input:focus,
.educational-form textarea:focus {
    border-color: var(--color-primary);
}

.contact-info-side {
    display: flex;
    flex-direction: column;
}

.contact-info-card {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.contact-info-card h3 {
    color: var(--color-light);
}

.contact-info-card p {
    color: rgba(255,255,255,0.85);
}

.info-item {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.info-icon {
    font-size: 24px;
    color: var(--color-accent);
}

.info-item h4 {
    color: var(--color-light);
    margin-bottom: 4px;
}

.info-item p, .info-item a {
    color: rgba(255,255,255,0.85);
}

/* Legal Pages */
.legal-section {
    background-color: var(--color-light);
}

.legal-date {
    font-style: italic;
    margin-bottom: 32px;
}

.legal-section h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 12px;
}

/* Thank You Section */
.thank-you-section {
    background-color: var(--bg-tint);
}

.thank-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-light);
    padding: 48px;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.thank-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 24px;
}

.next-steps-block {
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: 28px;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .next-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.step-card {
    background-color: var(--color-light);
    padding: 24px;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* Identical Footer Structure */
.site-footer {
    background-color: #1A3E80 !important; /* Hardcoded to protect from translation engines */
    color: #FFFFFF !important; /* Hardcoded */
    padding: 48px 16px 24px 16px;
    font-size: 14px;
}

.site-footer a {
    color: #E8A020 !important; /* Hardcoded */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 32px;
}

.footer-brand .logo {
    font-size: 32px;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-tagline {
    color: rgba(255,255,255,0.8) !important;
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 32px 0;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col h4 {
    color: #FFFFFF !important;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col p {
    color: rgba(255,255,255,0.8) !important;
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.6) !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(--color-primary);
    color: var(--color-light);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; color: var(--color-light); }
#cookie-banner a { color: var(--color-accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}
.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--color-dark);
}
.cookie-btn-decline {
    background-color: rgba(255,255,255,0.1);
    color: var(--color-light);
}
@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; }
}