.need-help-section {
    margin-top: 30px;
}

.need-help-section-container {
    min-height: 430px;
    border-radius: 20px;
    background-color: #F6F1E6;
}

@media (min-width: 990px) {
    .need-help-section-container {
        display: grid;
        grid-template-columns: 2fr 1fr;
    }

    .need-help-section-header {
        grid-column-start: 1;
        grid-column-end: 1;
        grid-row-start: 1;
        grid-row-end: 1;
    }

    .need-help-section-image {
        grid-column-start: 2;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 3;
    }

    .need-help-section-btn-container {
        grid-column-start: 1;
        grid-column-end: 1;
        grid-row-start: 2;
        grid-row-end: 2;
    }

    body:not(.rtl) .need-help-section-header {
        padding-left: 90px;
        padding-top: 80px;
    }

    body.rtl .need-help-section-header {
        padding-right: 90px;
        padding-top: 80px;
    }

    body:not(.rtl) .need-help-section-container .need-help-section-btn-container {
        padding-left: 90px;
    }

    body.rtl .need-help-section-container .need-help-section-btn-container {
        padding-right: 90px;
    }

    .need-help-section-container img {
        margin-top: -55px;
    }
}

.need-help-section-image {
    position: relative;
}

.need-help-section-image::before {
    content: '';
    position: absolute;
    display: block;
    width: calc(100% - 50px);
    height: calc(100% - 70px);
    border-radius: 50%;
    background-color: #f4ebd6;
    backdrop-filter: blur(77px);
    z-index: 1;
    top: 20px;
}

.need-help-section-container img {
    position: relative;
    border-radius: 15px;
    z-index: 9;
}

@media (min-width: 990px) {
    body.rtl .need-help-section-image::before {
        right: -30px;
    }
    
    body.rtl .need-help-section-container img {
        left: 100px;
    }
}

.need-help-section-container .need-help-section-title h2 {
    font-size: 45px;
    font-weight: 700;
    padding-bottom: 0;
    color: #333233;
}

.need-help-section-container .need-help-section-subtitle .subtitle {
    font-size: 36px;
    color: #333233;
}

.need-help-section-body {
    margin-top: 50px;
    max-width: 650px;
}

.need-help-section-body p {
    font-size: 17px;
}

.need-help-section-container .need-help-section-btn {
    display: flex;
    width: 286px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    text-transform: none;
    gap: 7px;
}

.need-help-section-container .need-help-section-btn i {
    font-size: 24px;
    color: #419022;
}

@media (max-width: 991px) {
    .need-help-section-container {
        display: flex;
        flex-wrap: wrap;
        padding: 40px 30px;
        padding-bottom: 0;
    }

    .need-help-section-header {
        order: 1;
    }

    .need-help-section-image {
        order: 3;
        margin-top: 30px;
    }

    .need-help-section-btn-container {
        order: 2;
        width: 100%;
        margin-top: 30px;
    }

    .need-help-section-container .need-help-section-btn {
        width: 100%;
    }

    .need-help-section-image::before {
        top: 25%;
        left: 10px;
        width: 74%;
        height: 66%;
    }

    .need-help-section-container .need-help-section-title h2 {
        font-size: 30px;
        line-height: 48px;
    }

    .need-help-section-container .need-help-section-subtitle .subtitle {
        font-size: 25px;
        line-height: 30px;
    }

    .need-help-section-body p {
        font-size: 14px;
        line-height: 21px;
    }
}