#sector_bank_services {
}
#sector_bank_services_container {
}
#sector_bank_services_content {
    flex-direction: column;
}
#sector_bank_services_section {
    margin: 0 auto;
}
#sector_bank_services_header {
    max-width: 740px;
    margin-bottom: 2rem;
}
#sector_bank_services_header p {
    color: var(--our-grey-color);
    line-height: 1.7;
    margin: 0;
}
#sector_bank_services_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
}
#sector_bank_services_grid .mm-serv-card:nth-child(1) {
    background: #fff;
    border: 0.5px solid #e8e8e8;
}
#sector_bank_services_grid .mm-serv-card:nth-child(2) {
    background: #EBF3FC;
}
#sector_bank_services_grid .mm-serv-card:nth-child(3) {
    background: #EBF3FC;
    border: 0.5px solid #e8e8e8;
}
#sector_bank_services_grid .mm-serv-card:nth-child(4) {
    background: #fff;
    border: 0.5px solid #e8e8e8;
}
#sector_bank_services_grid .mm-serv-card:nth-child(5) {
    grid-column: 1 / -1;
    border: 0.5px solid #e8e8e8;
}
.mm-serv-card {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mm-serv-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #185FA5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mm-serv-icon svg {
    width: 22px;
    height: 22px;
}
.mm-serv-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    line-height: 1.3;
}
.mm-serv-card p {
    color: var(--our-grey-color);
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 600px) {
    #sector_bank_services_grid {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }
    #sector_bank_services_grid .mm-serv-card:nth-child(5) {
        grid-column: 1;
    }
}