.need-help {
    border-radius: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    color: #fff;
    position: relative;
    z-index: 30;
    overflow: hidden;
}

.need-help:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: var(--section-image-background-color);
}

.need-help-inner {
    position: relative;
    z-index: 30;
}

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

.need-help-inner .text {
   font-weight: 500;
   font-size: 18px;
   margin-bottom: 10px; 
}

.need-help-inner .cta-title {
   font-weight: 800;
   font-size: 28px;
   margin: 30px 0 0;
}

.need-help-inner .call {
    padding-left: 30px;
    position: relative;
    font-size: 29px;
    color: #fff;
}

.need-help-inner .call:before {
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
    font-size: 22px;
}

