
        :root {
            --timvest-red: #cc0000;
            --brand-pill: #c8102e; /* Bright accent pill color from AssetRise reference */
            --pill-text: #ffffff;
            --nav-text: #ffffff;
            --nav-hover: #d1d5db;
            --header-bg: rgba(0, 0, 0, 0.3); /* Translucent overlay over background */
            --footer-bg: #050505;
            --input-bg: #1c1c1e;
            --text-muted: #8e8e93;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            background-color: #0d0d0d;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --------------------------------------------------
           HEADER & HERO SECTION
        -------------------------------------------------- */
        .hero-wrapper {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.85) 100%), 
                        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            display: flex;
            flex-direction: column;
        }

        .site-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.75rem 0;
            background: var(--header-bg);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .header-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* 1. Logo Slot */
        .logo-slot {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-slot img {
            height: 70px; /* Adjust height based on logo image aspect ratio */
            width: auto;
            object-fit: contain;
            display: block;
        }

        /* Fallback placeholder style if image URL is broken */
        .logo-slot img:not([src]), 
        .logo-slot img[src=""] {
            min-width: 140px;
            height: 38px;
            background-color: rgba(255, 255, 255, 0.15);
            border: 1px dashed rgba(255, 255, 255, 0.4);
            border-radius: 4px;
        }

        /* 2. Centered Navigation */
        .main-navigation {
            display: flex;
            align-items: center;
        }

        .nav-list {
            display: flex;
            align-items: center;
            gap: 2.25rem;
            list-style: none;
        }

        .nav-link {
            color: var(--nav-text);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: -0.01em;
            transition: color 0.2s ease;
        }

        .nav-link:hover {
            color: var(--nav-hover);
        }

        /* 3. Rounded Pill CTA Button */
        .header-actions {
            display: flex;
            align-items: center;
        }

        .btn-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--brand-pill);
            color: var(--pill-text);
            font-size: 0.9rem;
            font-weight: 600;
            padding: 0.65rem 1.6rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.25s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            min-height: 44px;
        }

        .btn-pill:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 56, 56, 0.3);
            filter: brightness(1.05);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background-color: var(--nav-text);
            margin: 5px 0;
            transition: 0.3s;
        }

        /* Hero Content */
        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 10rem 2rem 6rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 3.75rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.25rem;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
            margin-bottom: 2.5rem;
            max-width: 680px;
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
        }

        .btn-pill-dark {
            background-color: rgba(255, 255, 255, 0.12);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
        }

        .btn-pill-dark:hover {
            background-color: rgba(255, 255, 255, 0.22);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        /* --------------------------------------------------
           FOOTER SECTION (ASSETRISE DESIGN)
        -------------------------------------------------- */
        .site-footer {
            background-color: var(--footer-bg);
            padding: 5rem 0 3rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: #ffffff;
        }

        .footer-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand-col {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-brand-col .logo-slot img {
            height: 50px;
            width: auto;
            object-fit: contain;
        }

        .footer-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .footer-address {
            font-size: 1.65rem;
            line-height: 1.3;
            font-weight: 600;
            color: #ffffff;
            max-width: 440px;
            letter-spacing: -0.02em;
            margin-top: 0.35rem;
        }

        .newsletter-box {
            margin-top: 1rem;
            max-width: 440px;
        }

        .newsletter-label {
            display: block;
            font-size: 0.85rem;
            color: #ffffff;
            margin-bottom: 0.75rem;
        }

        .newsletter-input-wrap {
            background-color: var(--input-bg);
            border-radius: 100px;
            padding: 5px 6px 5px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .newsletter-input-wrap input {
            background: transparent;
            border: none;
            outline: none;
            color: #ffffff;
            font-size: 0.9rem;
            width: 100%;
        }

        .newsletter-input-wrap input::placeholder {
            color: var(--text-muted);
        }

        .btn-newsletter {
            background-color: #ffffff;
            color: #111111;
            border: none;
            border-radius: 50px;
            padding: 0.65rem 1.6rem;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: opacity 0.2s ease;
            white-space: nowrap;
        }

        .btn-newsletter:hover {
            opacity: 0.9;
        }

        .newsletter-consent {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 1rem;
            line-height: 1.5;
        }

        .newsletter-consent a {
            color: #ffffff;
            text-decoration: underline;
        }

        .footer-col h4 {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }

        .footer-col a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .footer-col a:hover {
            color: var(--brand-pill);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .copyright-text {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .compliance-disclaimer {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.6;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .main-navigation {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
            .footer-brand-col {
                grid-column: span 2;
            }
        }

        @media (max-width: 600px) {
            .footer-top {
                grid-template-columns: 1fr;
            }
            .footer-brand-col {
                grid-column: span 1;
            }
            .footer-address {
                font-size: 1.35rem;
            }
        }
    

    
    /* --------------------------------------------------
       CRADLE-TO-CAREER LOGO GRID STYLES
    -------------------------------------------------- */
    .cradle-career-section {
        background-color: #0d0d0d;
        padding: 6rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }

    .cradle-container {
        max-width: 1240px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cradle-title {
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 2.75rem;
        font-weight: 700;
        color: #ffffff;
        text-align: center;
        margin-bottom: 4rem;
        letter-spacing: -0.02em;
    }

    /* Flexible Grid Container */
    .logo-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.75rem;
        width: 100%;
    }

    /* Logo Card Slot */
    .logo-card {
        background: #ffffff;
        border-radius: 12px;
        width: calc(20% - 1.4rem); /* 5 items per row on large screens */
        min-width: 180px;
        height: 100px;
        padding: 0.5rem 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .logo-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
    }

    .logo-card img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

    /* Fallback text style if logo image path is missing */
    .logo-text-fallback {
        display: none;
        color: #111111;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        text-align: center;
    }

    /* Responsive Breakpoints */
    @media (max-width: 1100px) {
        .logo-card {
            width: calc(25% - 1.4rem); /* 4 items per row */
        }
        .cradle-title {
            font-size: 2.25rem;
        }
    }

    @media (max-width: 850px) {
        .logo-card {
            width: calc(33.333% - 1.2rem); /* 3 items per row */
            height: 90px;
        }
    }

    @media (max-width: 600px) {
        .cradle-career-section {
            padding: 4rem 1.25rem;
        }
        .cradle-title {
            font-size: 1.85rem;
            margin-bottom: 2.5rem;
        }
        .logo-card {
            width: calc(50% - 0.9rem); /* 2 items per row on mobile */
            height: 85px;
            padding: 0.75rem 1rem;
        }
    }



    /* --------------------------------------------------
       STATEMENT BANNER STYLES
    -------------------------------------------------- */
    .statement-banner-section {
        background-color: #f7f5ef;
        padding: 9rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .statement-container {
        max-width: 1040px;
        margin: 0 auto;
    }

    .statement-text {
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 2.85rem;
        font-weight: 500;
        line-height: 1.35;
        color: #000000;
        letter-spacing: -0.025em;
        margin: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .statement-banner-section {
            padding: 6rem 2rem;
        }
        .statement-text {
            font-size: 2.15rem;
        }
    }

    @media (max-width: 600px) {
        .statement-banner-section {
            padding: 4.5rem 1.25rem;
        }
        .statement-text {
            font-size: 1.5rem;
            line-height: 1.4;
        }
    }



    /* --------------------------------------------------
       COLOR PALETTE & SECTION STYLES
    -------------------------------------------------- */
    :root {
        --tv-cream-bg: #f7f5ef;
        --tv-cream-card: #e8e3d8;
        --tv-tan-card: #d8cfc0;
        --tv-red-card: #c8102e;
        --tv-black-card: #141414;
        --tv-white-card: #ffffff;
        --tv-text-dark: #1a1a1a;
        --tv-text-muted: #555555;
        --tv-border-light: rgba(0, 0, 0, 0.08);
    }

    .overview-section {
        background-color: var(--tv-cream-bg);
        padding: 5rem 2rem;
        color: var(--tv-text-dark);
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    .overview-container {
        max-width: 1280px;
        margin: 0 auto;
    }

    /* Top Layout */
    .overview-top {
        display: grid;
        grid-template-columns: 1.2fr 1fr 2.2fr;
        gap: 2rem;
        align-items: start;
    }

    .vision-heading h2 {
        font-size: 1.85rem;
        font-weight: 700;
        line-height: 1.25;
        color: var(--tv-text-dark);
        margin: 0;
        letter-spacing: -0.02em;
    }

    .vision-description p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--tv-text-muted);
        margin: 0;
    }

    /* Process Flow Line */
    .process-flow {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding-top: 0.5rem;
    }

    .process-line {
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        height: 1px;
        background-color: var(--tv-red-card);
        z-index: 1;
    }

    .process-step {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 90px;
    }

    .step-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: var(--tv-cream-bg);
        border: 1px solid var(--tv-red-card);
        color: var(--tv-red-card);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .step-icon svg {
        width: 16px;
        height: 16px;
    }

    .process-step span {
        font-size: 0.72rem;
        font-weight: 600;
        line-height: 1.2;
        color: var(--tv-text-dark);
    }

    /* Divider */
    .overview-divider {
        height: 1px;
        background-color: var(--tv-border-light);
        margin: 4rem 0;
    }

    /* Bottom Layout */
    .overview-bottom {
        display: grid;
        grid-template-columns: 1fr 2.5fr;
        gap: 3rem;
        align-items: start;
    }

    .engines-info h2 {
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--tv-text-dark);
        margin: 0 0 1.25rem 0;
        letter-spacing: -0.02em;
    }

    .engines-info p {
        font-size: 1rem;
        line-height: 1.5;
        color: var(--tv-text-muted);
        margin: 0 0 2rem 0;
    }

    .cta-link {
        display: inline-block;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--tv-red-card);
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .cta-link:hover {
        opacity: 0.8;
    }

    /* 2x3 Grid */
    .engines-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .engine-card {
        border-radius: 4px;
        padding: 1.5rem;
        min-height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .engine-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .card-icon svg {
        width: 32px;
        height: 32px;
    }

    .card-content h3 {
        font-size: 1.1rem;
        font-weight: 700;
        margin: 1.25rem 0 0.4rem 0;
    }

    .card-content p {
        font-size: 0.82rem;
        line-height: 1.4;
        margin: 0;
    }

    .card-arrow {
        position: absolute;
        bottom: 1.25rem;
        right: 1.25rem;
        font-size: 1.1rem;
    }

    /* Card Variations */
    .card-red {
        background-color: var(--tv-red-card);
        color: #ffffff;
    }
    .card-red .card-content p { color: rgba(255, 255, 255, 0.9); }

    .card-black {
        background-color: var(--tv-black-card);
        color: #ffffff;
    }
    .card-black .card-content p { color: rgba(255, 255, 255, 0.8); }

    .card-white {
        background-color: var(--tv-white-card);
        color: var(--tv-text-dark);
        border: 1px solid var(--tv-border-light);
    }
    .card-white .card-content p { color: var(--tv-text-muted); }

    .card-cream {
        background-color: var(--tv-cream-card);
        color: var(--tv-text-dark);
    }
    .card-cream .card-content p { color: var(--tv-text-muted); }

    .card-tan {
        background-color: var(--tv-tan-card);
        color: var(--tv-text-dark);
    }
    .card-tan .card-content p { color: var(--tv-text-muted); }

    /* Responsive Breakpoints */
    @media (max-width: 1024px) {
        .overview-top {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .overview-bottom {
            grid-template-columns: 1fr;
        }
        .engines-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 650px) {
        .process-flow {
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }
        .process-line {
            display: none;
        }
        .engines-grid {
            grid-template-columns: 1fr;
        }
    }

    /* --------------------------------------------------
       PORTFOLIO PROMISE BANNER STYLES
    -------------------------------------------------- */
    .promise-banner-section {
        background-color: #0d0d0d;
        padding: 5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: #ffffff;
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    .promise-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: 3.5rem;
        align-items: center;
    }

    /* Left Content Layout */
    .promise-content {
        display: flex;
        flex-direction: column;
    }

    .promise-eyebrow {
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.18em;
        color: #c8a362; /* Warm bronze / muted gold accent */
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .promise-headline {
        font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
        font-size: 2.75rem;
        font-weight: 500;
        line-height: 1.15;
        color: #ffffff;
        margin: 0 0 2rem 0;
        letter-spacing: -0.02em;
    }

    .promise-action-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        max-width: 480px;
    }

    .promise-description {
        font-size: 0.95rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.75);
        margin: 0;
    }

    .promise-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #c8102e; /* Brand Red */
        color: #ffffff;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 0.9rem 2rem;
        text-decoration: none;
        border-radius: 2px;
        transition: background-color 0.25s ease, transform 0.25s ease;
    }

    .promise-btn:hover {
        background-color: #a00c23;
        transform: translateY(-2px);
    }

    /* Right Gallery Grid (4 vertical strip images) */
    .promise-gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        height: 280px;
    }

    .gallery-card {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
        background-color: #1a1a1a;
    }

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: brightness(0.9);
        transition: transform 0.4s ease, filter 0.4s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.05);
        filter: brightness(1.05);
    }

    /* Responsive adjustments */
    @media (max-width: 1100px) {
        .promise-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        .promise-gallery {
            height: 240px;
        }
    }

    @media (max-width: 650px) {
        .promise-banner-section {
            padding: 3.5rem 1.25rem;
        }
        .promise-headline {
            font-size: 2rem;
        }
        .promise-gallery {
            grid-template-columns: repeat(2, 1fr);
            height: 380px;
            gap: 0.75rem;
        }
    }

    /* --------------------------------------------------
       100-YEAR HORIZON STYLES
    -------------------------------------------------- */
    .horizon-section {
        background-color: #f7f5ef;
        padding: 6rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: #000000;
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
        position: relative;
        overflow: hidden;
    }

    .horizon-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    .horizon-grid {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    /* Left Column */
    .horizon-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .horizon-eyebrow {
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        margin-bottom: 1.25rem;
    }

    .horizon-headline {
        font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
        font-size: 2.85rem;
        font-weight: 500;
        line-height: 1.18;
        color: #000000;
        margin: 0 0 2.25rem 0;
        letter-spacing: -0.02em;
    }

    .horizon-btn {
        display: inline-flex;
        align-items: center;
        background-color: #c8102e; /* Brand Red */
        color: #ffffff;
        font-size: 0.92rem;
        font-weight: 600;
        padding: 1rem 2.25rem;
        text-decoration: none;
        border-radius: 2px;
        transition: background-color 0.25s ease, transform 0.25s ease;
    }

    .horizon-btn:hover {
        background-color: #a00c23;
        transform: translateY(-2px);
    }

    /* Right Column Card */
    .horizon-card {
        position: relative;
        background: linear-gradient(145deg, #161616 0%, #111111 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        padding: 3rem 2.5rem;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
        overflow: hidden;
    }

    .card-watermark {
        position: absolute;
        top: -20px;
        right: -10px;
        font-family: 'Cinzel', serif;
        font-size: 11rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.02);
        line-height: 1;
        user-select: none;
        pointer-events: none;
    }

    .horizon-body {
        position: relative;
        z-index: 2;
        font-size: 1.1rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.88);
        margin: 0 0 2rem 0;
        font-weight: 400;
    }

    /* Feature Pills */
    .horizon-highlights {
        position: relative;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .pill {
        font-size: 0.75rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.4rem 0.85rem;
        border-radius: 20px;
        letter-spacing: 0.02em;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .horizon-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        .horizon-headline {
            font-size: 2.25rem;
        }
    }

    @media (max-width: 600px) {
        .horizon-section {
            padding: 4rem 1.25rem;
        }
        .horizon-headline {
            font-size: 1.85rem;
        }
        .horizon-card {
            padding: 2rem 1.5rem;
        }
        .horizon-body {
            font-size: 1rem;
        }
    }

    /* --------------------------------------------------
       PARTNERSHIP ROUTES STYLES
    -------------------------------------------------- */
    .partnership-section {
        background-color: #0d0d0d;
        padding: 6rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: #ffffff;
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    .partnership-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    .partnership-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4.5rem;
        align-items: center;
    }

    /* Left Content Styles */
    .partnership-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .partnership-eyebrow {
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        color: #c8a362; /* Bronze Accent */
        text-transform: uppercase;
        margin-bottom: 1.25rem;
    }

    .partnership-headline {
        font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
        font-size: 2.85rem;
        font-weight: 500;
        line-height: 1.18;
        color: #ffffff;
        margin: 0 0 1.5rem 0;
        letter-spacing: -0.02em;
    }

    .partnership-description {
        font-size: 1.05rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.82);
        margin: 0 0 2.5rem 0;
        max-width: 620px;
    }

    .partnership-btn {
        display: inline-flex;
        align-items: center;
        background-color: #c8102e; /* Brand Red */
        color: #ffffff;
        font-size: 0.92rem;
        font-weight: 600;
        padding: 1rem 2.25rem;
        text-decoration: none;
        border-radius: 2px;
        transition: background-color 0.25s ease, transform 0.25s ease;
    }

    .partnership-btn:hover {
        background-color: #a00c23;
        transform: translateY(-2px);
    }

    /* Right Ecosystem Grid Styles */
    .partnership-ecosystem {
        background: #141414;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 6px;
        padding: 2.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .ecosystem-header {
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .ecosystem-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.85rem;
    }

    .ecosystem-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        background: #1c1c1c;
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: #ffffff;
        padding: 0.75rem 1.15rem;
        border-radius: 4px;
        font-size: 0.9rem;
        font-weight: 500;
        transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
    }

    .ecosystem-chip:hover {
        border-color: #c8a362;
        background-color: #222222;
        transform: translateY(-2px);
    }

    .chip-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #c8102e;
    }

    


    /* ==========================================================================
   LEADERSHIP & GOVERNANCE SECTION STYLES
   ========================================================================== */

/* 
   -------------------------------------------------------------------------
   EASY COLOR & STYLING CUSTOMIZATION
   Adjust these CSS variables to tweak section-level background and text colors.
   -------------------------------------------------------------------------
*/
:root {
    /* Section Specific Colors */
    --lg-sec-bg: #0d0d0d;               /* Main section background */
    --lg-title-color: #ffffff;          /* Main section title color */
    --lg-text-color: rgba(255, 255, 255, 0.78); /* Main body text color */
    
    /* Philosophy Card Customization */
    --lg-philo-bg: #141414;
    --lg-philo-border: rgba(255, 255, 255, 0.08);

    /* Leader Card Customization */
    --lg-card-bg: #141414;              /* Leader card background */
    --lg-card-border: rgba(255, 255, 255, 0.08);
    --lg-card-title: #ffffff;
    --lg-card-role: #c8a362;            /* Accent gold for leadership roles */

    /* Governance List Block */
    --lg-gov-bg: #111111;
    --lg-gov-border: rgba(255, 255, 255, 0.08);
    --lg-gov-item-bg: #181818;

    /* Compliance Callout */
    --lg-comp-bg: #161616;
    --lg-comp-border: var(--brand-red, #c8102e);
}

/* Base Section Layout */
.leadership-governance-section {
    background-color: var(--lg-sec-bg);
    color: var(--lg-text-color);
    padding: 6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.leadership-governance-section .center-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.leadership-governance-section .section-title {
    color: var(--lg-title-color);
}

.leadership-governance-section .highlight {
    color: var(--accent-gold, #c8a362);
}

/* Philosophy Card Styles */
.philosophy-card {
    background-color: var(--lg-philo-bg);
    border: 1px solid var(--lg-philo-border);
    padding: 3rem;
    border-radius: 6px;
    margin-bottom: 3.5rem;
}

.philosophy-title {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.8rem;
    color: var(--accent-gold, #c8a362);
    margin-bottom: 1rem;
}

/* Leader Cards Layout */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.leader-card {
    background-color: var(--lg-card-bg);
    border: 1px solid var(--lg-card-border);
    padding: 2.5rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold, #c8a362);
}

.leader-role {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--lg-card-role);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.leader-name {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.8rem;
    color: var(--lg-card-title);
    margin-bottom: 1.25rem;
}

/* Governance Commitments List */
.governance-block {
    background-color: var(--lg-gov-bg);
    border: 1px solid var(--lg-gov-border);
    padding: 3rem;
    border-radius: 6px;
    margin-bottom: 3.5rem;
}

.subsection-title {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.75rem;
}

.governance-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.governance-list li {
    background-color: var(--lg-gov-item-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 2.75rem;
}

.governance-list li::before {
    content: "✓";
    position: absolute;
    left: 1.25rem;
    top: 1.2rem;
    color: var(--accent-gold, #c8a362);
    font-weight: bold;
}

/* Compliance Callout Box */
.compliance-callout {
    background-color: var(--lg-comp-bg);
    border-left: 4px solid var(--lg-comp-border);
    padding: 3rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.compliance-title {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.compliance-action {
    flex-shrink: 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .leadership-grid, 
    .governance-list {
        grid-template-columns: 1fr;
    }

    .compliance-callout {
        flex-direction: column;
        align-items: flex-start;
    }

    .compliance-action {
        width: 100%;
    }

    .compliance-action .btn-primary {
        display: block;
        text-align: center;
        width: 100%;
    }
}

/* ==========================================================================
   LEADERSHIP & GOVERNANCE HOMEPAGE SECTION STYLES
   ========================================================================== */

.leadership-section {
    /* ----------------------------------------------------------------------
       PER-SECTION COLOR CONFIGURATION
       Adjust these variables to change background, text, and button colors.
       ---------------------------------------------------------------------- */
    --sec-bg: #0a0a0a;                         /* Section background color */
    --sec-text-primary: #ffffff;               /* Main text & titles */
    --sec-text-muted: rgba(255, 255, 255, 0.75);/* Body & paragraph text */
    --sec-accent-gold: #c8a362;                /* Eyebrow & gold accents */
    --sec-accent-red: #c8102e;                 /* CTA button color */
    --sec-accent-red-hover: #a00c23;           /* CTA hover color */
    --sec-card-bg: rgba(255, 255, 255, 0.03);    /* Card background */
    --sec-card-border: rgba(255, 255, 255, 0.08);/* Card border color */
    --sec-card-hover: rgba(200, 163, 98, 0.4);   /* Card border on hover */
    --sec-photo-bg: #1a1a1a;                   /* Photo placeholder background */

    /* Section Structure */
    background-color: var(--sec-bg);
    color: var(--sec-text-primary);
    padding: 4.5rem 1.5rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.leadership-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Header Copy */
.leadership-header {
    max-width: 800px;
}

.leadership-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--sec-accent-gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.leadership-headline {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--sec-text-primary);
    margin-bottom: 0.85rem;
}

.leadership-subtext {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--sec-text-muted);
    margin: 0;
}

/* Leaders Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.leader-card {
    background-color: var(--sec-card-bg);
    border: 1px solid var(--sec-card-border);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.leader-card:hover {
    border-color: var(--sec-card-hover);
    transform: translateY(-3px);
}

/* Photo Holder & Fallback Placeholder */
.leader-photo-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    border: 2px solid var(--sec-accent-gold);
    background-color: var(--sec-photo-bg);
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--sec-photo-bg);
    color: var(--sec-text-muted);
}

.placeholder-initials {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sec-accent-gold);
}

.placeholder-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

/* Leader Info */
.leader-details {
    display: flex;
    flex-direction: column;
}

.leader-role {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sec-accent-gold);
    margin-bottom: 0.25rem;
}

.leader-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sec-text-primary);
    margin-bottom: 0.5rem;
}

.leader-bio {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--sec-text-muted);
    margin: 0;
}

/* Compliance Banner */
.compliance-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background-color: var(--sec-card-bg);
    border: 1px solid var(--sec-card-border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.compliance-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sec-text-primary);
    margin-bottom: 0.35rem;
}

.compliance-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--sec-text-muted);
    margin: 0;
}

.btn-compliance {
    display: inline-block;
    background-color: var(--sec-accent-red);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.75rem 1.35rem;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}

.btn-compliance:hover {
    background-color: var(--sec-accent-red-hover);
    transform: translateY(-2px);
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-headline {
        font-size: 2.5rem;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-list {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-headline {
        font-size: 2rem;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
}


