/* Green Environment Banner */
.green-banner {
    width: 100%;
    height: 230px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1);
}

#imageBanner {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Stats Report Cards */
.stats-report-container {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 32px;
    margin-top: 35px;
    margin-bottom: 10px;
}

.stats-card {
    width: 100%;
    height: 160px;
    margin: 0 auto;
    background: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    color: #202124;
    /* 150% */
    letter-spacing: 0.5px;
    gap: 10px;
    /* border: 1px solid #248C90; */
    border-radius: 10px;
}

.stats-title {
    height: 70px;
    padding: 0px 0 20px 25px;
    /* background: #248C90;
    border: 1px solid #248C90; */
    border-radius: 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
}

.stats-number {
    padding: 23px 0 20px 24px;
    color: black;
    font-weight: 550;
    font-size: 35px;
    line-height: 54px;
}

/* Responsive CSS */
@media screen and (max-width: 1250px) {
    .stats-report-container {
        grid-template-columns: auto;
    }
}

/* Responsive CSS - Mobile */
@media screen and (max-width: 800px) {
    .green-banner {
        display: none;
    }
}