.help-box {
    position: relative;
    border-radius: 24px;
    padding: 80px 20px;
    /* min-height: 260px; */
    height: 400px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

@media(max-width:758px)
{
    .help-box{
    min-height: 260px;

    }
}

/* التظليل */
.help-box .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.help-title,
.help-desc,
.btn {
    position: relative;
    z-index: 2;
}

.help-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.help-desc {
    color: #e5e5e5;
    font-size: 16px;
    margin-bottom: 20px;
}

/* الأزرار */
.btn-white {
    background: #ffffff;
    color: #2c2c2c;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-white:hover {
    background: #ebebeb;
}

.btn-green {
    background: #03c98a;
    color: #fff;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-green:hover {
    background: #02ae75;
}
