section {
    margin: 120px 5% !important;
    margin-bottom: 30px !important;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #003543;
}

.need__cards {
    display: flex;
    gap: 20px;
}

.need__item {
    padding: 24px;
    border-radius: 10px;
    background: #F7FBFC;
    width: 100%;
}

.need__item:first-child {
    background: #fff;
    border: 1px solid #0196BB;
}

.need__title {
    font-size: 24px;
    font-weight: 500;
    color: #0196BB;
    margin-bottom: 15px;
}

.need__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.need__list-item {
    font-size: 16px;
    color: #577B84;
    display: flex;
}

.need__list-item::before {
    content: "";
    background: #0196BB;
    min-width: 6px;
    width: 6px;
    height: 6px;
    border-radius: 100px;
    display: block;
    margin-top: 7px;
    margin-right: 11px;
    margin-left: 7px;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 23px;
    }

    .need__cards {
        flex-direction: column;
        gap: 10px;
    }

    .need__title {
        font-size: 20px;
    }

    .need__item {
        padding: 16px;
    }
}

@media screen and (max-width: 768px) {
    section {
        margin: 80px 5% !important;
    }
}