#sectors_explain_1 {
}
#sectors_explain_1_container {
}
#sectors_explain_1_content {
    flex-direction: column;
}
#sectors_explain_1_section{
    margin: 0 auto;
}
#sectors_explain_1_header {
    max-width: 740px;
    margin-bottom: 2rem;
}
#sectors_explain_1_header p {
    color: var(--our-grey-color);
    line-height: 1.7;
    margin: 0;
}
#sectors_explain_1_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
}
.mm-serv-card {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mm-serv-card:nth-child(1) {
    background: #fff;
    border: 0.5px solid #e8e8e8;
}
.mm-serv-card:nth-child(2) {
    background: #EBF3FC;
}
.mm-serv-card:nth-child(3) {
    background: #EBF3FC;
}
.mm-serv-card:nth-child(4) {
    background: #fff;
    border: 0.5px solid #e8e8e8;
}
.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) {
    #sectors_explain_1_grid {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .mm-serv-card:nth-child(1),
    .mm-serv-card:nth-child(4) {
        border: none;
        border-bottom: 0.5px solid #e8e8e8;
    }
}