.services-section{
    padding:80px 0;
    background:#f8f9fa;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    color:#0b7a3b;
    font-size:42px;
    font-weight:700;
}

.section-title p{
    color:#777;
    font-size:18px;
}

.service-content{
    background:#fff;
    padding:25px 30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

    height:850px;

    display:flex;
    flex-direction:column;

    justify-content:flex-start;   /* Instead of center */
}

.col-lg-5,
.col-lg-7{
    display:flex;
}

.service-content,
.product-gallery{
    width:100%;
}

.services-section .row{
    display:flex;
    align-items:stretch;
}

.service-content h3{
    color:#8b1c2d;
    margin-bottom:20px;
    font-weight:bold;
}

.service-content p{
    text-align:justify;
    line-height:32px;
    color:#555;
}

.service-content ul{
    margin-top:25px;
    padding-left:20px;
}

.service-content li{
    margin-bottom:14px;
    font-size:17px;
    color:#333;
}

/* Product Images */

.product-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.product-item{
    background:#fff;
    border-radius:18px;
    padding:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    transition:.4s;
}

.product-item img{
    width:100%;
    height:320px;          /* Increase height */
    object-fit:contain;    /* Show complete image */
    background:#fff;
    display:block;
}

.product-item:hover{
    transform:translateY(-8px);
}

/* Highlight */

.highlight-section{

    padding-bottom:80px;
    background:#f8f9fa;

}

.highlight-box{

    background:linear-gradient(135deg,#8b1c2d,#d6a733);
    color:#fff;
    text-align:center;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.highlight-box h2{

    margin-bottom:15px;
    font-weight:bold;

}

.highlight-box p{
color:white;
    margin:0;
    font-size:18px;

}

/* Responsive */

@media(max-width:991px){

.product-gallery{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.section-title h2{

font-size:30px;

}

.product-gallery{

grid-template-columns:repeat(2,1fr);

}

.product-gallery img{

height:140px;

}

.service-content{

padding:25px;

}

.highlight-box{

padding:25px;

}

.highlight-box h2{

font-size:24px;

}

}