.product-title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

p{
    margin-bottom: 15px;
}

.product-ul{
    list-style: square;
    padding: 0;
}

.product-ul li{
    padding: 0;
    margin-left: 20px;
}

.product-ul li::marker{
    color: #fff !important;
}

.product-ul li ul{
    list-style: circle;
    padding: 0;
}

.product-ul li ul li{
    padding: 0;
    margin-left: 0px;
}

.banenrdiv {
    position: absolute;
    left: 0;
    top: -204px;
}

.page-title-content .title {
    font-size: 20px;
}

.custom-bg-prop{
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    background-color: #0b5e3a;
    background-blend-mode: multiply;
    
    /* layout & spacing */
    min-height: 320px;
    padding: 48px 24px;
    display: flex; 
    align-items: center;
    justify-content: flex-start;

    /* typography */
    color: #ffffff;
    text-align: left; 

    /* stacking context for overlay pseudo-element */
    position: relative;
    overflow: hidden;
}

.custom-bg-prop::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.28); /* opacity সমন্বয় করে টেক্সট contrast বাড়ান */
    pointer-events: none;
}

.custom-bg-prop > *{
    position: relative;
    z-index: 1;
}

.single-page-content{
    background-color: rgba(1, 148, 66, 0.4);
    border-radius: 5px;
    padding: 20px;
}

.done-title h2{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

@media only screen and (max-width: 768px){
    .custom-bg-prop{
        background-attachment: scroll;
        background-position: center;
        padding: 32px 16px;
        min-height: 260px;
    }

    .banenrdiv {
        position: absolute;
        left: 0;
        top: -204px;
    }

    .page-title-content .title {
        font-size: 20px;
    }

    .product-title{
        font-size: 20px;
        text-align: center;
    }

    .product-ul {
        margin-left: 0px !important;
    }
}