:root {
    /* Cosmic Navy Palette */
    --col-navy: #051339;
    /* Base */
    --col-dark-blue: #323D5D;
    --col-blue-grey: #626A82;
    --col-grey: #949AAA;
    --col-light-grey: #C3C6CF;
    --col-white-blue: #E6E7EB;
    /* Top color (corrected from typo) */

    /* Theme Mapping */
    --bg-primary: var(--col-navy);
    --bg-secondary: var(--col-white-blue);

    --text-primary: var(--col-white-blue);
    /* Headings/Main text on Dark */
    --text-secondary: var(--col-light-grey);
    /* Body text on Dark */

    --text-on-light-primary: var(--col-navy);
    /* Headings on Light */
    --text-on-light-secondary: var(--col-dark-blue);
    /* Body text on Light */

    --accent: var(--col-blue-grey);
    /* Subtle accent */
    --accent-hover: var(--col-white-blue);

    /* Spacing */
    --container-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Fraunces', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    /* Clean, modern look */
    line-height: 1.1;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    color: var(--text-primary);
    /* Was accent, now primary for better readability */
}

p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style-position: inside;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

li {
    margin-bottom: 0.5rem;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section.dark-alt {
    background-color: var(--bg-secondary);
    color: var(--text-on-light-secondary);
}

.section.dark-alt h2,
.section.dark-alt h3 {
    color: var(--text-on-light-primary);
}

.section.dark-alt p,
.section.dark-alt li {
    color: var(--text-on-light-secondary);
}

.section.dark-alt .detail-card {
    background: rgba(5, 19, 57, 0.05);
    /* Subtle navy tint */
    border: 1px solid rgba(5, 19, 57, 0.1);
}

.section.dark-alt ul li::before {
    color: var(--text-on-light);
    /* Update checkmarks on light bg */
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 19, 57, 0.9);
    /* Navy with opacity */
    backdrop-filter: blur(10px);
    color: var(--text-primary);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Buttons */
.cta-button {
    display: inline-block;
    border: 1px solid var(--text-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.cta-button.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

/* Hero Section - Refined Design */
.hero {
    min-height: 100vh;
    padding: 150px var(--spacing-md) 0;
    /* Reduced top padding to move heading up */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Top aligned instead of centered */
    overflow: hidden;
    /* Prevent scrollbars if image is huge */
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: var(--spacing-md);
    min-height: calc(100vh - 150px);
    /* Full height minus hero padding */
    max-width: 1400px;
    /* Wider container for hero to match reference */
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    grid-column: 1 / -1;
    grid-row: 1;
}

.hero-title h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    /* Even larger */
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

.hero-subtitle-container {
    grid-column: 1 / 2;
    grid-row: 2;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 1;
    line-height: 1.5;
}

.hero-cta-container {
    grid-column: 1 / 2;
    grid-row: 4;
    align-self: end;
    padding-bottom: var(--spacing-lg);
    justify-self: start;
}

.cta-link-arrow {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.cta-link-arrow:hover {
    opacity: 1;
}

.cta-link-arrow .arrow {
    font-size: 1.4rem;
    transition: transform 0.3s;
}

.cta-link-arrow:hover .arrow {
    transform: translate(4px, -4px);
}

.hero-details-container {
    grid-column: 2 / 3;
    grid-row: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
    align-self: end;
    padding-bottom: calc(var(--spacing-lg) * 2.5);
}

.hero-details-text {
    font-size: 1.5rem;
    line-height: 1.2;
    max-width: 300px;
    margin-bottom: var(--spacing-sm);
}

.hero-image-wrapper {
    width: 110%;
    /* Oversized to act as a background element */
    max-width: none;
    height: auto;
    position: absolute;
    top: 10%;
    /* Align bottom edge */
    /*left: 20%; /* Position it to the right, slightly cut off */
    right: -5%;
    /* Position it to the right, slightly cut off */
    z-index: -1;
    /* Put it behind the text */
    opacity: 0.12;
    /* Fade it out so text is readable */
    pointer-events: none;
    /* Ensure text is clickable */
    line-height: 0;
    /* Remove any bottom spacing from inline-block img */
}

.hero-image {
    width: 100%;
    height: auto;
}

/* Removed hover animation */

/* Responsive adjustments for Hero */
@media (max-width: 768px) {
    .hero {
        padding: 100px var(--spacing-sm) var(--spacing-lg);
        min-height: auto;
        /* Allow content to dictate height if needed, but usually 100vh is good */
        display: flex;
        flex-direction: column;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
        min-height: auto;
        width: 100%;
    }

    .hero-title {
        margin-bottom: 0;
    }

    .hero-title h1 {
        font-size: 4rem;
        /* Adjusted for better fit */
        line-height: 1.1;
    }

    .hero-subtitle-container {
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        align-self: left;
    }

    /* Re-order for mobile: Title -> Subtitle -> Details -> CTA -> Image (bg) */

    .hero-cta-container {
        grid-column: 1;
        grid-row: auto;
        margin-top: var(--spacing-sm);
        padding-bottom: 0;
        order: 4;
        /* CTA comes after details */
    }

    .hero-details-container {
        grid-column: 1;
        grid-row: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-bottom: 0;
        margin-top: var(--spacing-md);
        order: 3;
        /* Details come before CTA */
    }

    .hero-details-text {
        display: block;
        /* Unhide this */
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: var(--spacing-sm);
        color: var(--text-secondary);
        text-align: left;
        /* Ensure left alignment */
    }

    .hero-image-wrapper {
        width: 250%;
        /* Make it wider than the screen */
        height: 750px;
        /* Significantly taller */
        position: absolute;
        top: auto;
        bottom: -200px;
        /* Pull it down slightly if needed, or 0 */
        right: -125%;
        /* Centerish or offset */
        left: auto;
        opacity: 0.1;
        z-index: -1;
        overflow: hidden;
        pointer-events: none;
    }

    .hero-image {
        object-fit: contain;
        /* Or cover, depending on the SVG */
        object-position: center bottom;
        width: 100%;
        height: 100%;
    }
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.lead {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: var(--spacing-md);
}

.highlight-box {
    border-left: 1px solid var(--accent);
    padding-left: var(--spacing-md);
}

/* Program Details */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-md);
}

.detail-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-card li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.detail-card li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Specific list styles */
.compact-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.compact-list li::before {
    content: "•";
    color: var(--accent);
    margin-right: 0.75rem;
    font-weight: bold;
}

.check-list li {
    margin-bottom: 0.75rem;
}

.check-list li::before {
    content: "✓";
    margin-right: 0.75rem;
    color: var(--accent);
    font-weight: bold;
    background: rgba(255, 255, 255, 0.1);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    /* Align with text */
}

/* Format card specific bullets */
.detail-card:first-child ul li::before {
    content: "→";
    margin-right: 0.75rem;
    color: var(--accent);
    font-weight: bold;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.criteria-column h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: var(--spacing-sm);
}

.not-for-you ul li::before {
    content: "×";
    margin-right: 0.5rem;
    color: #ff8a80;
    /* Soft red */
}

.on-the-other-hand ul li::before {
    content: "→";
    margin-right: 0.5rem;
    color: var(--accent);
}

/* Footer */
.footer {
    text-align: center;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(5, 19, 57, 0.1);
    background-color: var(--bg-secondary);
    color: var(--text-on-light-primary);
}

.footer h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-on-light-primary);
}

.footer p {
    color: var(--text-on-light-secondary);
}

.footer .cta-button {
    margin-top: var(--spacing-md);
    border-color: var(--text-on-light-primary);
    color: var(--text-on-light-primary);
}

.footer .cta-button:hover {
    background-color: var(--text-on-light-primary);
    color: var(--bg-secondary);
}

.footer-links {
    margin-top: var(--spacing-xl);
    font-size: 0.9rem;
    opacity: 0.5;
    color: var(--text-on-light-secondary);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
}

/* Schedule Section */
.schedule-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.schedule-day {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(5, 19, 57, 0.15);
    border-radius: 12px;
    padding: var(--spacing-md);
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(5, 19, 57, 0.2);
}

.schedule-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-on-light-primary);
}

.day-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.day-badge.mandatory {
    background-color: rgba(5, 19, 57, 0.2);
    color: var(--text-on-light-primary);
    border: 1px solid rgba(5, 19, 57, 0.3);
}

.day-badge.optional {
    background-color: rgba(98, 106, 130, 0.2);
    color: var(--text-on-light-secondary);
    border: 1px solid rgba(98, 106, 130, 0.3);
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.schedule-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--col-blue-grey);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.schedule-time {
    min-width: 140px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-on-light-primary);
    opacity: 0.8;
}

.schedule-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-content h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-on-light-primary);
    font-family: var(--font-main);
}

.schedule-duration {
    font-size: 0.85rem;
    color: var(--text-on-light-secondary);
    opacity: 0.8;
    padding: 0.3rem 0.75rem;
    background: rgba(5, 19, 57, 0.12);
    border-radius: 16px;
    font-weight: 500;
}

.schedule-note {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(5, 19, 57, 0.15);
}

.schedule-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-on-light-secondary);
    font-style: italic;
}

/* =========================================
   Responsive Breakpoints
   ========================================= */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 6rem;
        --spacing-lg: 3rem;
    }

    .hero {
        padding: 120px var(--spacing-md) 0;
    }

    .hero-grid {
        gap: var(--spacing-md);
    }

    .section {
        padding: var(--spacing-lg) 0;
    }
}

/* Tablets and Mobile Landscape */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 2.5rem;
        --spacing-md: 1.5rem;
    }

    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-primary);
        flex-direction: column;
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        gap: var(--spacing-sm);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: flex;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    /* Typography */
    h2 {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
    }

    /* Layout */
    .container {
        padding: 0 var(--spacing-sm);
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .content-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    /* Buttons */
    .cta-button {
        min-height: 44px;
        min-width: 44px;
    }

    .cta-button.large {
        padding: 1rem 1.75rem;
        font-size: 1.1rem;
    }

    .schedule-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .schedule-day {
        padding: 1.25rem;
    }

    .schedule-header h3 {
        font-size: 1.3rem;
    }

    .schedule-item {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.75rem;
        align-items: center;
    }

    .schedule-time {
        min-width: 95px;
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .schedule-content {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        flex: 1;
        justify-content: space-between;
    }

    .schedule-content h4 {
        font-size: 0.95rem;
        line-height: 1.3;
        margin: 0;
    }

    .schedule-duration {
        font-size: 0.75rem;
        padding: 0.25rem 0.65rem;
        white-space: nowrap;
    }

    /* Section Headers */
    .section-subtitle {
        font-size: 1rem;
    }

    /* Details Grid */
    .details-grid {
        grid-template-columns: 1fr;
    }

    .detail-card {
        padding: 1.5rem;
    }

    .detail-card h3 {
        font-size: 1.4rem;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 1.75rem;
        --spacing-md: 1rem;
        --spacing-sm: 0.75rem;
    }

    /* Typography - Extra Small */
    h1 {
        font-size: 1.75rem;
        letter-spacing: -0.01em;
    }

    h2 {
        font-size: 1.35rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    /* Navigation */
    .navbar {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero {
        padding: 80px 1rem var(--spacing-md);
        min-height: 100vh;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: calc(100vh - 160px);
    }

    .hero-cta-container {
        margin-top: auto;
        padding-bottom: 2rem;
    }

    .hero-title h1 {
        font-size: 3.25rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .cta-link-arrow {
        font-size: 1.1rem;
    }

    .hero-details-text {
        font-size: 1rem;
        opacity: 0;
    }

    /* Buttons */
    .cta-button.large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .cta-button.small {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
    }

    /* Cards */
    .detail-card {
        padding: 1.25rem;
    }

    .detail-card h3 {
        font-size: 1.4rem;
    }

    /* Schedule */
    .schedule-day {
        padding: 1rem;
    }

    .schedule-header h3 {
        font-size: 1.2rem;
    }

    .schedule-item {
        padding: 0.6rem;
        gap: 0.5rem;
        align-items: center;
    }

    .schedule-time {
        min-width: 80px;
        font-size: 0.72rem;
        line-height: 1.2;
    }

    .schedule-content {
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
    }

    .schedule-content h4 {
        font-size: 0.88rem;
    }

    .schedule-duration {
        font-size: 0.68rem;
        padding: 0.2rem 0.5rem;
    }

    /* Editorial Content */
    .editorial-content h3 {
        font-size: 1.5rem;
    }

    .editorial-list strong {
        font-size: 1em;
    }

    .editorial-list li {
        font-size: 0.95rem;
    }

    /* Proposal */
    .proposal-cutout {
        padding: 1.5rem;
    }

    .proposal-lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .proposal-card {
        padding: 1.25rem;
    }

    .proposal-card h3 {
        font-size: 1.2rem;
    }

    .proposal-card p {
        font-size: 0.95rem;
    }

    /* Criteria */
    .criteria-split-side {
        padding: 1.5rem;
    }

    .criteria-split-header h3 {
        font-size: 1.25rem;
    }

    .criteria-split-list li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

    .criteria-decision-banner {
        padding: 1.5rem;
    }

    .criteria-decision-banner h3 {
        font-size: 1.3rem;
    }

    .criteria-decision-banner p {
        font-size: 1rem;
    }

    /* Footer */
    .footer h2 {
        font-size: 1.5rem;
    }

    .footer h4 {
        font-size: 1.1rem;
    }

    .footer p {
        font-size: 0.95rem;
    }
}

/* =========================================
   Program Details - Editorial Flow
   ========================================= */
.program-editorial {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.editorial-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    transition: all 0.3s ease;
}

.editorial-row:hover {
    border-top-color: var(--text-primary);
}

.editorial-label {
    font-family: var(--font-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.editorial-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.editorial-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
}

.editorial-list.single-col {
    grid-template-columns: 1fr;
}

.editorial-list li {
    list-style: none;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.editorial-list li:hover {
    color: var(--text-primary);
}

.editorial-list strong {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.05em;
}

/* Responsive Program Details */
@media (max-width: 768px) {
    .editorial-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .editorial-label {
        margin-top: 0;
    }

    .editorial-content h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .editorial-list {
        grid-template-columns: 1fr;
        gap: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .editorial-row {
        gap: 0.75rem;
        padding-top: 1.5rem;
    }

    .editorial-label {
        font-size: 0.8rem;
    }
}

/* =========================================
   Proposal Section - Cutout Design
   ========================================= */
.proposal-cutout {
    background-color: var(--col-navy);
    border-radius: 24px;
    padding: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
}

.proposal-lead {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    margin-bottom: 3rem;
    max-width: 900px;
    font-weight: 400;
}

.proposal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.proposal-card {
    background-color: #fff;
    color: var(--col-navy);
    padding: 2rem;
    border-radius: 12px;
}

.proposal-card h3 {
    color: var(--col-navy);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(5, 19, 57, 0.1);
    padding-bottom: 0.5rem;
}

.proposal-card p {
    color: var(--col-dark-blue);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.proposal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.proposal-footer h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff !important;
}

.proposal-footer p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .proposal-cutout {
        padding: 2rem;
        border-radius: 16px;
    }

    .proposal-lead {
        font-size: 1.4rem;
    }

    .proposal-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Transition Options
   ========================================= */

/* Option 1: Overlap */
.transition-overlap {
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.transition-overlap .proposal-cutout {
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.15);
}

/* Option 2: Gradient Fade */
.transition-gradient-wrapper {
    background: linear-gradient(to bottom, var(--col-navy) 0%, var(--bg-secondary) 300px);
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Option 3: Slant */
.transition-slant-wrapper {
    position: relative;
    background-color: var(--bg-secondary);
    padding-top: 100px;
}

.transition-slant-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--col-navy);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

/* Fix for Proposal Footer Text */
.proposal-footer p {
    color: #ffffff !important;
    /* Force white */
    opacity: 0.9;
}

/* =========================================
   Criteria Split Screen Section
   ========================================= */
.criteria-split-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(5, 19, 57, 0.12);
    margin-top: var(--spacing-lg);
}

.criteria-split-side {
    padding: 2.5rem;
    position: relative;
}

.criteria-split-left {
    background: linear-gradient(135deg, #0a0f1f 0%, #151d33 100%);
    color: var(--text-secondary);
}

.criteria-split-right {
    background: linear-gradient(135deg, var(--col-navy) 0%, #0a1f4d 100%);
    color: var(--text-primary);
}

.criteria-split-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.criteria-split-header h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-primary) !important;
}

.criteria-split-left h3 {
    color: var(--text-primary) !important;
}

.criteria-split-right h3 {
    color: var(--text-primary) !important;
}

.criteria-split-description {
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: italic;
    margin: 0;
    color: var(--text-secondary) !important;
}

.criteria-split-list {
    list-style: none;
    padding: 0;
}

.criteria-split-list li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
    line-height: 1.6;
}

.criteria-split-list li:last-child {
    border-bottom: none;
}

.criteria-split-list li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
    top: 0.6rem;
}

.criteria-split-left .criteria-split-list li::before {
    content: '×';
    color: var(--col-grey);
}

.criteria-split-right .criteria-split-list li::before {
    content: '✓';
    color: var(--col-light-grey);
}

.criteria-split-left .criteria-split-list li {
    color: var(--text-secondary);
}

.criteria-split-right .criteria-split-list li {
    color: var(--text-secondary);
}

.criteria-split-list li strong {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.criteria-decision-banner {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--col-navy) 0%, #0a1f4d 100%);
    border-radius: 20px;
    text-align: center;
    color: var(--text-primary);
}

.criteria-decision-banner h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary) !important;
}

.criteria-decision-banner p {
    font-size: 1.1rem;
    color: var(--text-secondary) !important;
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.criteria-decision-banner .cta-button {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.criteria-decision-banner .cta-button:hover {
    background-color: var(--text-primary);
    color: var(--col-navy);
}

@media (max-width: 968px) {
    .criteria-split-wrapper {
        grid-template-columns: 1fr;
    }

    .criteria-split-side {
        padding: var(--spacing-md);
    }

    .criteria-decision-banner {
        padding: var(--spacing-md);
    }

    .criteria-decision-banner h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .criteria-split-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        line-height: 1.7;
    }

    .criteria-split-list li::before {
        font-size: 1rem;
    }
}