.aboutUs-header {
    padding: 2.5em;
    font-size: 26px;
    font-weight: 500;
    background: #E8F2F9;
    text-align: center;
    color: #053763;
}
.aboutUs-container {
    font-size: 18px;
    padding: 3em 8em;
    background-color: white;
}
.aboutUs-container > p {
    margin-bottom: 2rem;
}
.blue-container {
    background-color: #053763;
    border-radius: 8px;
    padding: 2em 3em 2em 2em;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 2em; 
    align-items: center; 
    justify-content: center;
    min-height: 350px; 
}
.blue-container ul {
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start; 
    height: 100%;
}
.blue-container li {
    font-size: 18px;
    padding-left: 0.5rem;
    margin-bottom: 1em;
}
.trade-insights {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1em;
    justify-content: center; 
    height: 100%; 
}
.trade-box {
    background: white;
    color: #053763;
    padding: 1.5em;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1em;
    font-weight: 500;
    width: 95%;
}
.trade-box img {
    background-color: #bedbee6e;
    padding: 5px;
    border-radius: 5px;
    width: 80px;
    height: 80px;
    margin-right: 10px;
    object-fit: contain;
    filter: brightness(1);
}
section {
    margin-bottom: 2rem;
}
.title {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.list-view > li {
    margin-bottom: 1rem;
} 
.trade-insights > a,
.last-section > a ,
.list-view > li a {
    color: #2c75b6 !important;
    font-weight: 500;
}
a:hover {
    text-decoration: none !important;
}
@media (max-width: 768px) {
    .aboutUs-header {
        font-size: 22px;
        padding: 3em;
    }
    .aboutUs-container {
        font-size: 16px;
        padding: 3em;
    }
    .blue-container {
        grid-template-columns: 1fr; 
        padding: 1.5em;
        min-height: auto;
    }
    .blue-container ul {
        padding-left: 25px !important;
        flex-direction: column;
        align-items: center;
    }
    .blue-container li {
        font-size: 16px;
        padding-left: 1rem;
        margin-bottom: 1.5rem;
    }
    .trade-insights {
        align-items: center;
    }
    .trade-box {
        flex-direction: row;
        width: 100%;
        height: 7em;
        padding: 1.5em;
    }
    .trade-box img {
        width: 65px;
        height: 65px;
    }
    .title {
        font-size: 1.2rem;
    }
    .last-section {
        margin-bottom: 0 !important;
    }
}