section {
    margin: 120px 5% !important;
    margin-bottom: 30px !important;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #003543;
}

.benefits__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.benefits__item {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto 1fr; 
    column-gap: 16px;           
    padding: 24px 24px 48px 24px;
    background: #F7FBFC;
    border-radius: 8px;
    height: 100%;                  
    box-sizing: border-box;      
}


.benefits__top {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefits__top img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.benefits__top span {
    color: #0196BB;
    font-size: 20px;
    font-weight: 500;
    width: 70%;
    line-height: 1.3;
}

.benefits__item p {
    grid-column: 2 / 3;
    grid-row: 2 / 3; 
    color: #577B84;
    font-size: 14px;
    margin: 0;
    padding-top: 8px;
}

@media screen and (max-width: 1200px) {
.benefits__cards {
    grid-template-columns: repeat(2, 1fr);
}
}

@media screen and (max-width: 768px) {
    .benefits__cards {
    grid-template-columns: repeat(1, 1fr);
}

.benefits__top span {
    font-size: 18px;
}

.benefits__item {
    padding: 16px;
    column-gap: 7px;
}

.benefits__top img {
    width: 30px;
    height: 30px;
}

.section-title {
        font-size: 23px;
    }
}

@media screen and (max-width: 768px) {
    section {
        margin: 80px 5% !important;
    }
}