    body{
        background:#ffffff; 
    }

    header { 
        background:#111; 
        color:#fff; 
        padding:30px; 
        text-align:center; 
    }

    .kpi-row { 
        display:flex; 
        gap:15px; 
        flex-wrap:wrap; 
        margin-bottom:25px; 
    }

    .kpi-card { 
        flex:1; 
        background:white; 
        padding:20px; 
        border: 1px solid #eeeeeeff;
        border-radius:10px; 
        border-left:6px solid #111; 
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .kpi-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .kpi-card span { 
        font-size:12px; 
    }

    .kpi-card strong { 
        font-size:26px; 
        display:block; 
    }

    .results-table { 
        width:100%; 
        background:white; 
        border-radius:10px; 
        overflow:hidden; 
        box-shadow:0 1px 3px rgba(0,0,0,.1); 
    }

    .results-table th, .results-table td { 
        padding:12px; 
        border-bottom:1px solid #eee; 
    }

    .results-table th { 
        background:#f0f0f0; 
    }

    .positive { 
        color:green; 
        font-weight:bold; 
    }

    .negative { 
        color:red; 
        font-weight:bold; 
    }

    .trend-buttons button {
        border:none; 
        padding:8px 16px; 
        border-radius:6px; 
        background:#ddd; 
        margin-right:6px; 
        cursor:pointer;
    }

    .trend-buttons button.active { 
        background:#111; 
        color:white; 
    }

    .coe-chart { 
        background:white; 
        padding:20px; 
        border-radius:10px; 
        margin-bottom:100px;
        height:400px; 
        border: 1px solid rgb(250, 250, 250);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    /* COE Renewal Cards */
    .info-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 40px;
    }

    .info-card {
        flex: 1;
        min-width: 300px;
        background-color: #ffffff;
        border-radius: 15px;
        padding: 25px 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .info-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .info-card h3 {
        display: flex;
        align-items: center;
        font-size: 1.3rem;
        color: #111;
        font-weight: 600;
        padding-bottom: 10px;
        margin-bottom: 20px;
        border-bottom: 2px solid #e0e0e0;
    }

    .info-card h3 .icon {
        margin-right: 10px;
        font-size: 1.4rem;
        color: #232324ff; /* Icon accent color */
    }

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

    .info-card ul li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
        color: #444;
        font-size: 0.95rem;
    }

    .info-card ul li::before {
        content: "•";
        position: absolute;
        left: 0;
        top: 0.35em;
        color: #000000ff; /* Bullet accent color */
        font-weight: bold;
    }


    /* FAQ */
    .faq-title {
        color: #222;
        font-weight: 600;
        font-size: 2rem;
    }

    .faq-hr {
        width: 150px;
        border-top: 3px solid #000000;
        margin-top: 15px;
        margin-bottom: 40px;
    }

    /* Accordion Styles */
    .accordion-item {
        border: none;
        margin-bottom: 10px;
    }

    .accordion-button.faq-header {
        background-color: #2c2c2c; 
        color: white;
        padding: 18px 20px;
        font-size: 1rem;
        font-weight: 500;
    }

    .accordion-button.faq-header:not(.collapsed) {
        background-color: #444;
        color: white;
    }

    .accordion-button::after {
        filter: brightness(0) invert(1);
    }

    .accordion-body.faq-body {
        background-color: #e8e8e8;
        color: #222;
        padding: 20px;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

    /* Footer CTA */
    .footer-cta {
    width: 100%;                
    background-color: #000;     
    color: #fff;                
    padding: 40px 16px;         
    display: flex;              
    justify-content: center;   
    align-items: center;     
    }

    .cta-content {
    display: flex;             
    align-items: center;       
    gap: 155px;         
    flex-wrap: wrap;      
    text-align: left;  
    }

    .cta-text h3 {
    font-size: 1.25rem;         
    font-weight: 700;           
    margin: 0 0 8px 0;
    }

    .cta-text p {
    font-size: 0.875rem;        
    color: #d1d5db;             
    margin: 0;
    }

    .buttons {
    display: flex;
    gap: 12px;
    }

    .buttons button {
    padding: 12px 16px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    }

    .btn-red {
    background-color: #dc2626;
    color: #fff;
    }

    .btn-red:hover {
    background-color: #b91c1c;
    }

    .btn-white {
    background-color: #fff;
    color: #000;
    }

    .btn-white:hover {
    background-color: #e5e7eb;
    }

    /* Mobile Adjustments */
/* Mobile Adjustments */
@media (max-width: 640px) {

    /* KPI Cards: 2 columns x 2 rows */
    .kpi-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .kpi-card {
        flex: 0 0 calc(50% - 10px); /* two per row */
        max-width: calc(50% - 10px);
    }

    /* Info Cards: 2 columns x 2 rows */
    .info-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .info-card {
        flex: 0 0 calc(50% - 10px); /* two per row */
        max-width: calc(50% - 10px);
    }

    /* Trend Buttons: single centered row */
    .trend-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;      /* keep in one row */
        overflow-x: auto;       /* allow horizontal scroll if needed */
        gap: 3px;               /* smaller spacing between buttons */
    }

    .trend-buttons button {
        flex: 0 0 auto;         /* natural width */
        font-size: 0.7rem;      /* smaller text */
        padding: 3px 6px;      /* smaller padding */
        min-width: 45px;        /* minimum width for touch */
        white-space: nowrap;    /* prevent text wrapping */
    }

    /* Charts: smaller height for mobile */
    .coe-chart {
        height: 300px;
    }

    /* Footer CTA: stack content vertically */
    .cta-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }
    .buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
    }
    .buttons button {
        flex: 1 1 45%;
    }

    /* FAQ Accordion: full width */
    .accordion-item {
        width: 100%;
    }

    /* Table: responsive scroll */
    .results-table {
        display: block;
        overflow-x: auto;
        width: 100%;
    }


}

