.service-details{
    background:#f8f9fa;
}

.service-main-img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.service-title{
    color:#1E8E3E;
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
}

.service-description{
    font-size:17px;
    line-height:1.8;
    color:#555;
}
.service-description{
    text-align: justify;
}
.service-info-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.service-info-box h3{
    color:#1E8E3E;
    font-weight:600;
    margin-bottom:20px;
}

.service-benefits{
    list-style:none;
    padding:0;
    margin:0;
}

.service-benefits li{
    position:relative;
    padding-left:30px;
    margin-bottom:12px;
    color:#555;
}

.service-benefits li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#28a745;
    font-weight:bold;
}

@media(max-width:768px){

    .service-main-img{
        height:280px;
    }

    .service-title{
        font-size:28px;
    }

    .service-description{
        font-size:15px;
    }
}