/*
  design-style: soft-organic
  border-style: sharp
  shadow-style: dramatic
  color-mode: mixed
  Color Palette: Pastel Dusk
*/

:root {
    --color-dark: #2C2A4A;
    --color-light: #F7F7F7;
    --color-primary: #DAB6FC;
    --color-accent: #FFB084;
    --color-text-dark: #2C2A4A;
    --color-text-light: #F7F7F7;
    --font-primary: 'Helvetica Neue', Arial, sans-serif;
    --border-radius: 0; /* from border-style: sharp */
    --shadow-dramatic: 0 24px 64px rgba(44, 42, 74, 0.22);
    --shadow-dramatic-hover: 0 32px 80px rgba(44, 42, 74, 0.30);
}

/* --- General Styles --- */
body {
    font-family: var(--font-primary);
    margin: 0;
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-light);
    font-size: clamp(16px, 1.5vw, 18px);
}

h1, h2, h3, h4 {
    margin: 0 0 1rem 0;
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 3vw, 1.5rem); }

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 64px 0;
}

.section-light {
    background-color: var(--color-light);
    color: var(--color-text-dark);
}

.section-dark {
    background: linear-gradient(145deg, var(--color-dark), #403d69);
    color: var(--color-text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { max-width: 700px; margin: 0 auto; opacity: 0.9; }
.section-title-small { font-size: clamp(1.8rem, 4vw, 2.5rem); }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: none;
}
.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-dark);
}
.btn-primary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-dramatic-hover);
}
.btn-light {
    background-color: var(--color-light);
    color: var(--color-text-dark);
}
.btn-light:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

/* --- Header --- */
.site-header {
    position: absolute;
    width: calc(100% - 20px);
    padding: 15px 10px;
    z-index: 1000;
    background: transparent;
    background: #2c2a4a;
}
.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-text-light);
}
.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; margin: 5px 0; transition: 0.3s; background-color: var(--color-text-light); }
.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-light); font-weight: 500; }
.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-dark);
}
.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-light); display: block; }

/* --- Hero Section (Diagonal Split) --- */
.hero-diagonal {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
    background-color: var(--color-dark);
    color: var(--color-text-light);
    overflow: hidden;
}
.hero-diagonal-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 16px;
}
.hero-text-block {
    max-width: 600px;
}
.hero-text-block .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin: 24px 0 32px;
    max-width: 500px;
}
.hero-diagonal-image {
    flex: 1;
    min-height: 300px;
}
.hero-diagonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-diagonal {
        flex-direction: row;
        min-height: 700px;
        max-height: 100vh;
    }
    .hero-diagonal-content {
        flex-basis: 50%;
        padding: 110px 40px 40px;
    }
    .hero-diagonal-image {
        flex-basis: 50%;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    }
}

/* --- Benefits Section (Asymmetrical Grid) --- */
.benefits-asymm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.benefit-card-asymm {
    padding: 32px;
    background-color: #fff;
    box-shadow: var(--shadow-dramatic);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card-asymm:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dramatic-hover);
}
.benefit-card-asymm h3 { color: var(--color-dark); }
@media (min-width: 768px) {
    .benefits-asymm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .benefits-asymm-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }
    .benefit-card-asymm.featured {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
    .benefit-card-asymm.wide {
        grid-column: 2 / 4;
    }
}

/* --- CTA Banner Section --- */
.cta-banner-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    padding: 64px 0;
    color: var(--color-text-dark);
}
.cta-banner-content {
    text-align: center;
}
.cta-banner-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.cta-banner-content p {
    max-width: 600px;
    margin: 16px auto 32px;
}

/* --- Comparison Table Section --- */
.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.comparison-table {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid #ddd;
    box-shadow: var(--shadow-dramatic);
}
.comparison-table .table-header {
    background-color: var(--color-dark);
    color: var(--color-text-light);
    padding: 20px;
    font-weight: bold;
}
.comparison-table .table-cell {
    padding: 20px;
    border-top: 1px solid #ddd;
}
.comparison-table .table-cell:nth-child(odd) {
    background-color: #fff;
}
.comparison-table .table-cell:nth-child(even) {
    background-color: #f9f9f9;
}
.check-mark { color: #61C653; font-weight: bold; margin-right: 8px; }
.cross-mark { color: #E55454; font-weight: bold; margin-right: 8px; }
@media (min-width: 768px) {
    .comparison-table {
        grid-template-columns: 1fr 1fr;
    }
    .comparison-table .table-header:nth-child(2) {
       border-left: 1px solid #ddd;
    }
    .comparison-table .table-cell:nth-child(2n) {
        border-left: 1px solid #ddd;
    }
}

/* --- Icon Features Section --- */
.icon-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.icon-feature-item {
    text-align: center;
}
.icon-feature-emoji {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 16px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}
.icon-feature-item h4 { color: var(--color-primary); }
.icon-feature-item p { margin: 0; opacity: 0.8; }
@media (min-width: 500px) {
    .icon-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .icon-features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Accordion FAQ Section --- */
.faq-container { max-width: 800px; }
.accordion-item {
    border-bottom: 1px solid #ddd;
}
.accordion-header {
    padding: 20px 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    list-style: none; /* remove default marker */
    position: relative;
    padding-right: 30px;
}
.accordion-header::-webkit-details-marker { display: none; }
.accordion-header::after {
    content: '+';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.accordion-item[open] .accordion-header::after {
    transform: translateY(-50%) rotate(45deg);
}
.accordion-content {
    padding: 0 0 20px 0;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-dark) !important;
    color: var(--color-text-light) !important;
    padding: 48px 0 0;
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.footer-heading { color: var(--color-primary) !important; font-size: 1.2rem; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a, .footer-column a { color: var(--color-text-light) !important; }
.footer-bottom {
    text-align: center;
    padding: 24px 0;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 600px) {
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .footer-container { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* --- Page Specific Styles --- */
.page-hero { padding: 80px 0; text-align: center; }
.page-title { margin-top: 60px; }
.page-subtitle { max-width: 700px; margin: 16px auto 0; }

/* Program Page: Numbered Sections */
.numbered-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 80px;
    position: relative;
}
.numbered-section-number {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: bold;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
}
.content-image-styled {
    margin-top: 24px;
    box-shadow: var(--shadow-dramatic);
    border-radius: var(--border-radius);
}
@media (min-width: 768px) {
    .numbered-section {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
    }
    .numbered-section.reverse { flex-direction: row-reverse; }
    .numbered-section-number {
        position: absolute;
        top: -30px;
        left: 0;
        z-index: 0;
    }
    .numbered-section.reverse .numbered-section-number {
        left: auto;
        right: 0;
    }
    .numbered-section-content {
        flex: 1;
        padding-left: 100px;
        position: relative;
        z-index: 1;
    }
    .numbered-section.reverse .numbered-section-content {
        padding-left: 0;
        padding-right: 100px;
    }
}

/* Mission Page: Vertical Storytelling */
.story-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
    align-items: center;
}
.story-image-wrapper, .story-text-wrapper {
    flex: 1;
}
.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-dramatic);
    border-radius: var(--border-radius);
}
.full-width-text {
    max-width: 800px;
    margin: 0 auto;
}
@media (min-width: 900px) {
    .story-block { flex-direction: row; }
    .story-block.reverse { flex-direction: row-reverse; }
}

/* Contact Page: Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.contact-info-item { margin-bottom: 24px; }
.contact-info-item h4 { color: var(--color-dark); }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 8px; font-weight: bold; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-size: 16px;
    box-sizing: border-box;
}
.contact-form .form-submit-btn { width: 100%; }
@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 1fr 1.5fr; }
}

/* Legal & Thank You Pages */
.legal-page-container, .thank-you-container {
    max-width: 800px;
}
.legal-page-container h1 { margin-top: 60px; }
.legal-page-container h2 { margin-top: 40px; }
.thank-you-section { text-align: center; padding: 80px 0; }
.thank-you-icon { font-size: 64px; margin-bottom: 24px; }
.thank-you-next-steps { margin-top: 48px; }
.next-steps-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 24px; }
.next-step-card {
    display: block;
    padding: 24px;
    background-color: #fff;
    box-shadow: var(--shadow-dramatic);
    color: var(--color-text-dark);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.next-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dramatic-hover);
}
@media (min-width: 768px) {
    .next-steps-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- 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;
    background-color: var(--color-dark);
    color: var(--color-text-light);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(0); transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--color-primary); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px; border: none; cursor: pointer;
    border-radius: var(--border-radius); font-weight: bold;
}
.cookie-btn-accept { background-color: var(--color-accent); color: var(--color-text-dark); }
.cookie-btn-decline { background-color: #555; color: #fff; }

/* --- Mobile Nav Logic --- */
@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); }
    .section { padding: 80px 0; }
    .page-title { margin-top: 40px; }
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}