.still-need-help {
    position: relative;
    background-color: #ffffff;
    height: 422px;
}

.still-need-help-content {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.still-need-help-title {
    font-family: "Larsseit";
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: var(--primary);
}

.still-need-help-button {
    margin-top: 24px;
}

.still-need-help-button a {
    font-family: "Larsseit";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    padding: 14px 24px;
    margin: 0 auto;
    text-decoration: none;
    background: var(--primary);
    border-radius: 24px;
    transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    display: flex;
    justify-content: center;
    width: fit-content;
}

.still-need-help-button a:hover {
    background-color: var(--primary-text-hover);
    color: #ffffff;
}

@media (max-width: 991px) {
    .still-need-help {
        height: 354px;
    }

    .still-need-help-title {
        font-size: 40px;
        line-height: 44px;
    }
}

@media (max-width: 575px) {
    .still-need-help {
        height: 346px;
    }

    .still-need-help-title {
        font-size: 32px;
        line-height: 36px;
    }
}