.nls-general-block-c .nls-block-wrapper {
    text-align: center;
}
.nls-general-block-c .nls-block-container {
    flex-wrap: nowrap;
    justify-content: space-evenly;
    margin: 50px 0;
}
.nls-general-block-c .nls-item-title {
    text-align: left;
    font-size: 32px;
    font-weight: 600;
}
.nls-general-block-c .negative.nls-block-content {
    background-color: #efefef;
    border-radius: 15px;
    padding: 0 32px;
}

.nls-general-block-c .nls-item {
    line-height: 1.5;
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 300;
    margin: 32px 0;
}
.nls-general-block-c .postive .nls-item::before {
    content: url('../img/icons/postive.png'); /* Replace with your actual image URL */
    margin-top: 0px;
    margin-right: 12px;
    margin-bottom: -10px;
}
.nls-general-block-c .negative .nls-item::before {
    content: url('../img/icons/negative.png'); /* Replace with your actual image URL */
    margin-top: 0px;
    margin-right: 12px;
    margin-bottom: -10px;
}
.nls-general-block-c .nls-primary-button {
    margin: 50px 0;
}

@media (max-width: 980px) {
    .nls-general-block-c  .nls-block-content {
        margin-bottom: 50px;
    }
    .nls-general-block-c .nls-block-container {
        display: block;
    }
    .nls-general-block-c .negative.nls-block-content {
        padding: 12px 32px;
    }
}