.need-help {
    border-radius: 6px 50px 0 6px;
    width: 100%;
    color: var(--need-help-color);
    position: relative;
    z-index: 50;
    overflow: hidden;
    background-color: var(--section-image-background-color);
}

.need-help:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0.6;
}

.need-help-inner {
    position: relative;
    z-index: 30;
    display: flex;
    align-items: stretch;
}

.need-help-inner .image {
    width: 230px;
    min-width: 230px;
}

.need-help-inner .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.need-help-inner .title {
   font-weight: 700;
   font-size: 25px;
   margin-bottom: 10px; 
}

.need-help-inner .text {
    margin-bottom: 0;
}

.need-help-inner .content-holder {
    padding: 30px 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
}

.help-buttons {
    align-self: center;
}

.help-buttons .btn {
    background: transparent !important;
    border: 1px solid var(--need-help-btn-border-color) !important;
    color: var(--need-help-btn-color) !important;
    min-width: 250px;
}

.help-buttons .btn:hover,
.help-buttons .btn:focus,
.help-buttons .btn:active {
    background: var(--need-help-btn-background-color-hover) !important;
    border: 1px solid var(--need-help-btn-border-color-hover) !important;
    color: var(--need-help-btn-color-hover) !important;
}

.help-buttons .btn:hover:after,
.help-buttons .btn:focus:after,
.help-buttons .btn:active:after {
    color: var(--need-help-btn-color-hover) !important;
}

.help-buttons .btn:after {
    color: var(--need-help-btn-color) !important;
    font-size: 12px !important;;
}

@media only screen and (max-width: 991px) {
    .need-help-inner .content-holder {
        flex-wrap: wrap;
    }
   
}

@media only screen and (max-width: 767px) {
    .need-help-inner {
        flex-wrap: wrap;
    }

    .need-help-inner .image {
        width: 100%;
        min-width: 100%;
    }
   
}
