html{
    scroll-behavior:smooth;
}

body{
    font-family: "Montserrat", sans-serif;
}

.rentals-wrap{
    background:#0b0b0b;
    color:#fff;
}

.service-section{
    margin-bottom:60px;
}

.section-title{
    color:#fff;
    font-size:28px;
    font-weight:800;
    margin-bottom:25px;
    border-left:5px solid #c21414;
    padding-left:15px;
}

.list-card{
    display:flex;
    align-items:center;
    gap:20px;
    background:linear-gradient(#f5f5f5,#e6e6e6);
    border-radius:6px;
    padding:15px;
    margin-bottom:18px;
    box-shadow:0 10px 20px rgba(0,0,0,.35);
}

.list-image{
    width:140px;
    height:100px;
    flex-shrink:0;
    background:#fff;
    border-radius:5px;
    overflow:hidden;
}

.list-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.list-content{
    flex:1;
}

.list-content h3{
    color:#111;
    font-size:20px;
    font-weight:800;
    margin-bottom:8px;
}

.list-content p{
    color:#444;
    margin:0;
}

.list-action{
    min-width:160px;
    text-align:right;
}

.rental-btn{
    display:inline-block;
    padding:10px 25px;
    background:linear-gradient(#c21414,#8f0f0f);
    color:#fff;
    text-decoration:none;
    border-radius:4px;
    font-weight:700;
}

.disabled-row{
    opacity:.6;
}

@media(max-width:768px){

    .list-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .list-image{
        width:100%;
        height:220px;
    }

    .list-action{
        width:100%;
        text-align:left;
    }

}