/* Add custom CSS styles below */ 
section.s-block.s-block--bundle-html-content {
    margin-top: 0 !important;
}
.hero-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:100vh;
    padding:80px;
    background:#f7f4ef;
    overflow:hidden;
    direction:rtl;
}

.hero-image{.hero-section{
    min-height:100vh;
    background-image:url("https://i.ibb.co/GfcVskfw/Rectangle-2.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
    justify-content:flex-end;

    padding:80px;
    direction:rtl;
}

.hero-content{
    max-width:700px;
    text-align:center;
}

.hero-top-line,
.hero-bottom-line{
    width:300px;
    height:1px;
    background:#666;
    margin:0 auto 30px;
}

.hero-bottom-line{
    margin:30px auto;
}

.hero-subtitle{
    font-size:32px;
    color:#222;
    line-height:1.6;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:110px;
    font-weight:800;
    line-height:1;
    color:#000;
    margin-bottom:25px;
}

.hero-features{
    display:flex;
    justify-content:center;
    gap:60px;
    margin-top:40px;
}

.feature{
    max-width:250px;
}

.feature p{
    font-size:30px;
    line-height:1.8;
    color:#222;
}
    width:50%;
}

.hero-image img{
    width:100%;
    display:block;
}

.hero-content{
    width:45%;
    text-align:center;
}

.top-line,
.middle-line{
    width:280px;
    height:1px;
    background:#222;
    margin:0 auto 30px;
}

.hero-subtitle{
    font-size:28px;
    color:#3d2d1f;
    line-height:1.8;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:100px;
    font-weight:900;
    line-height:0.95;
    color:#000;
    margin-bottom:30px;
}

.hero-features{
    display:flex;
    justify-content:space-between;
    gap:30px;
    margin-top:40px;
}

.feature{
    flex:1;
}

.feature .line{
    width:180px;
    height:1px;
    background:#444;
    margin:0 auto 20px;
}

.feature p{
    font-size:28px;
    color:#222;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .hero-section{
        flex-direction:column;
        padding:40px 20px;
    }

    .hero-image,
    .hero-content{
        width:100%;
    }

    .hero-content h1{
        font-size:60px;
    }

    .hero-subtitle{
        font-size:20px;
    }

    .hero-features{
        flex-direction:column;
    }

    .feature p{
        font-size:18px;
    }
}