
    :root {
        /* Backgrounds */
        --bg-dark: #0d1117;
        --bg-navy: #091525;
        --bg-blue: #001e66;
        --bg-mid: #001e66;
        --bg-gray: #f2f5f9;
        /* Text */
        --text-main: #dce3ea;
        --text-white: #ffffff;
        --text-dark: #1a1a2e;
        /* Accents */
        --color-accent: #8cad30;
        --color-teal: #95a7cf;
        --color-gold: #ffc107;
        /* Surfaces & borders */
        --surface: rgba(255, 255, 255, 0.06);
        --border-dim: rgba(255, 255, 255, 0.12);
        /* UI */
        --ease: 0.25s ease;
        --radius: 8px;
    }

    body {
        font-family: 'Open Sans', sans-serif;
        color: var(--text-white);
    }


    body p {
        color: var(--text-white);
        font-size: 18px;
        position: relative;
    }

    .sponsored {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--bg-gray);
        z-index: 1001;
        border-radius: 0 0 15px 15px;
        padding: 5px 20px;
        color: var(--bg-navy);
        font-size: 10px;
        font-weight: 600;        
    }

    nav {
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: transparent;
        padding: 1.5rem 0;
    }

    nav .nav-logo {
        display: flex;
        gap: 1.50rem;
        align-items: center;
    }

    nav svg {
        max-width: 150px;
    }

    nav .banner {
        font-size: 1.2rem;
        color: #fff;
        padding: 10px 15px;
        background-color: var(--color-accent);
        border-radius: 15px 0px 15px 0px;
    }

    nav .banner strong {
        font-weight: 700;
    }

    #hero {
        height: 98vh;
        display: flex;
        align-items: center;
        padding-top: 200px;
        background-image: url(../images/bg.jpg);
        background-position: center;
        background-size: cover;
    }

    #hero h1 {
        font-size: 5rem;
    }

    @media (max-width: 1600px) {
        #hero h1 {
            font-size: 3rem;
        }
    }

    #hero .container {
        position: relative;
        z-index: 2;
    }

    #hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 0;
    }

    

    .right-text {
        position: absolute;
        top: 0;
        left: 45%;
        width: 100%;
        height: 100%;
        background-image: url(../images/hexagon.svg);
        background-repeat: no-repeat;
        background-position: left top;
        background-size: auto 100%;
        opacity: .8 !important;
        z-index: 1;
    }

    @media (max-width: 1600px) {
        .right-text {
            left: 42%;
        }
    }


    /* Section backgrounds */
    .sec-dark {
        background: var(--text-white);
        color: var(--text-dark);
    }

    .sec-dark p {
        color: var(--text-dark);
    }

    .sec-navy {
        background: var(--bg-navy);
        color: var(--text-main);
    }

    .sec-blue {
        background: var(--bg-blue);
        color: var(--text-white);
    }

    .sec-mid {
        background: var(--bg-mid);
        color: var(--text-main);
    }

    .sec-gray {
        background: var(--bg-gray);
        color: var(--text-dark);
    }

    /* Color utilities */
    .color-accent {
        color: var(--color-accent);
    }

    .color-teal {
        color: var(--color-teal);
    }

    .color-gold {
        color: var(--color-gold);
    }

    .color-0070c0 {
        color: var(--color-accent);
    }

    /* Arrow list */
    .arrow-list {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    .arrow-list li {
        position: relative;
        padding: 0.45rem 0.5rem 0.45rem 1.9rem;
        margin-bottom: 0.35rem;
        line-height: 1.65;
    }

    .arrow-list li::before {
        content: "\2192";
        position: absolute;
        left: 0;
        color: var(--color-accent);
        font-weight: 700;
    }

    .sec-blue .arrow-list li::before {
        color: #a8d8ff;
    }

    .sec-mid .arrow-list li::before {
        color: #7ec8ff;
    }

    .sec-gray .arrow-list li::before {
        color: #1040a0;
    }

    /* Two-column arrow list */
    .arrow-list-2col {
        columns: 2;
        gap: 1.5rem;
    }

    .arrow-list-2col li {
        break-inside: avoid-column;
    }

    @media (max-width: 767px) {
        .arrow-list-2col {
            columns: 1;
        }
    }

    /* Section title bar */
    .sec-title-bar {
        border-left: 4px solid var(--color-accent);
        padding: 0.15rem 0 0.15rem 1rem;
        margin-bottom: 1.75rem;
    }

    .sec-title-bar.teal-bar {
        border-left-color: var(--color-teal);
    }

    .sec-title-bar.gold-bar {
        border-left-color: var(--color-gold);
    }

    .sec-gray .sec-title-bar {
        border-left-color: #1040a0;
    }

    /* Breaking news card */
    .breaking-card {
        border: 2px solid var(--color-gold);
        border-radius: var(--radius);
        padding: 2.5rem;
        background: rgba(255, 193, 7, 0.05);
        color: var(--text-main);
        transition: box-shadow var(--ease), transform var(--ease);
    }

    .breaking-card:hover {
        box-shadow: 0 0 36px rgba(255, 193, 7, 0.25);
        transform: translateY(-3px);
    }

    /* Placeholder images */
    .placeholder-img {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: var(--surface);
        border: 2px dashed var(--border-dim);
        border-radius: var(--radius);
        padding: 50px 20px;
        color: rgba(255, 255, 255, 0.4);
        font-style: italic;
        text-align: center;
        width: 100%;
        min-height: 180px;
        transition: border-color var(--ease), background var(--ease);
    }

    .placeholder-img:hover {
        border-color: rgba(255, 255, 255, 0.38);
        background: rgba(255, 255, 255, 0.1);
    }

    .sec-gray .placeholder-img,
    .placeholder-img.light-ph {
        background: #e9ecef;
        border-color: #adb5bd;
        color: #6c757d;
    }

    .sec-gray .placeholder-img:hover,
    .placeholder-img.light-ph:hover {
        border-color: #6c757d;
        background: #dee2e6;
    }

    .placeholder-img .ph-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        opacity: 0.45;
    }

    .placeholder-img .ph-name {
        font-size: 0.78rem;
        margin-top: 0.3rem;
        opacity: 0.55;
    }

    .img-caption {
        font-size: 0.82rem;
        text-align: center;
        margin-top: 0.6rem;
        opacity: 0.55;
        font-style: italic;
    }

    /* Metric card */
    .metric-card {
        background: var(--surface);
        border: 1px solid rgba(77, 179, 255, 0.3);
        border-radius: var(--radius);
        padding: 1.2rem 1.4rem;
        height: 100%;
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--text-main);
        transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .metric-card:hover {
        transform: translateY(-5px);
        border-color: var(--color-accent);
        box-shadow: 0 10px 28px rgba(77, 179, 255, 0.2);
    }

    .metric-card strong {
        font-size: 1.35rem;
        display: block;
        color: var(--color-accent);
        margin-bottom: 0.2rem;
    }

    /* Project card */
    .project-card {
        background: var(--surface);
        border-top: 3px solid var(--color-accent);
        border-radius: 0 0 var(--radius) var(--radius);
        padding: 1.4rem 1.5rem;
        height: 100%;
        color: var(--text-main);
        transition: transform var(--ease), box-shadow var(--ease), border-top-color var(--ease);
    }

    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
        border-top-color: var(--color-teal);
    }

    /* Demand driver card */
    .driver-card {
        background: var(--surface);
        border-radius: var(--radius);
        padding: 1.4rem 1.5rem;
        border: 1px solid var(--border-dim);
        height: 100%;
        color: var(--text-main);
        transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .driver-card:hover {
        transform: translateY(-5px);
        border-color: var(--color-accent);
        box-shadow: 0 10px 28px rgba(77, 179, 255, 0.16);
    }

    /* Highlight callout */
    .highlight-dark {
        background: rgba(77, 179, 255, 0.09);
        border-left: 4px solid var(--color-accent);
        border-radius: 0 var(--radius) var(--radius) 0;
        padding: 1.6rem 2rem;
        color: var(--text-main);
    }

    /* Quote block */
    .quote-block {
        border-left: 3px solid var(--color-accent);
        padding: 1rem 1.5rem;
        background: rgba(77, 179, 255, 0.07);
        border-radius: 0 var(--radius) var(--radius) 0;
        font-style: italic;
        color: var(--text-main);
        transition: border-left-color var(--ease), background var(--ease);
    }

    .quote-block:hover {
        border-left-color: var(--color-teal);
        background: rgba(77, 179, 255, 0.13);
    }

    .sec-blue .quote-block {
        background: rgba(255, 255, 255, 0.09);
        border-left-color: #7ec8ff;
        color: var(--text-white);
    }

    /* Analyst box */
    .analyst-box {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius);
        padding: 2rem 2.5rem;
        color: var(--text-white);
        transition: border-color var(--ease), box-shadow var(--ease);
    }

    .analyst-box:hover {
        border-color: rgba(255, 255, 255, 0.45);
        box-shadow: 0 0 28px rgba(255, 255, 255, 0.08);
    }

    /* Top reasons heading */
    .top-reasons-heading {
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 900;
        color: var(--color-teal);
        text-align: center;
        margin-bottom: 2.5rem;
        line-height: 1.3;
    }

    .top-reasons-heading .atlx-accent {
        color: var(--color-accent);
    }

    /* Horizontal dividers */
    .sec-dark hr,
    .sec-navy hr,
    .sec-mid hr {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .sec-gray hr {
        border-color: rgba(0, 0, 0, 0.1);
    }

    /* Link colors */
    .sec-dark a,
    .sec-navy a,
    .sec-mid a {
        color: var(--color-accent);
    }

    .sec-blue a {
        color: #a8d8ff;
    }

    .text-dark {
        color: var(--text-dark);
    }

    /* AOS overrides */
    [data-aos] {
        pointer-events: none;
    }

    [data-aos].aos-animate {
        pointer-events: auto;
    }

    .bg-cover {
        background-size: cover !important;
        background-position: center !important;
        padding-top: 70%;
    }

    .table thead th:first-child {
        border-radius: 15px 0 0 0;
    }
    .table thead th:last-child {
        border-radius: 0 15px 0 0;
    }
    .table tbody tr:last-child td:first-child {
        border-radius: 0 0 0 15px;
        border-bottom: none !important;
    }
    .table tbody tr:last-child td:last-child {
        border-radius: 0 0 15px 0;
        border-bottom: none !important;
    }

    .table thead th {
        border-bottom: 2px solid var(--bg-blue);
        
    }
    
    .cta {
        background-color: var(--color-accent);
        border-radius: 30px 0 30px 0;
        padding: 20px;
        text-align: center;
        font-weight: 900;
        width: 100%;
        max-width: 990px;
        margin: auto;
        display: block;
        text-decoration: none;
        color: #fff !important;
        font-size: 22px;
        transition: all 0.3s ease;
    }

    .cta:hover {
        box-shadow: 0 0 28px rgba(140, 173, 48, 0.4);
        transform: translateY(-3px);
    }


    @media (max-width: 767px) {
        nav .nav-logo {
            justify-content: space-between;
        }
        nav svg {
            max-width: 100px !important;
        }
        nav img {
            max-width: 150px !important;
        }
        #hero {
            padding-top: 120px;
        }

        #hero h1 {
            font-size: 1.8rem;
        }

        .right-text {
            left: 10%;
        }
    }