.fleet-section{
    padding:80px 0;
    background:#fff;
}

.fleet-heading{
    margin-bottom:50px;
}

.fleet-heading h2{
    font-size:42px;
    font-weight:700;
    color:#2f3542;
}

.fleet-heading h2 span{
    color:#ff2d55;
}

.fleet-heading p{
    font-size:16px;
    color:#666;
}

.fleet-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    margin-bottom:30px;
    text-align:center;
}

.fleet-card:hover{
    transform:translateY(-8px);
}

.vehicle-tag{
    background:#ff2d55;
    color:#fff;
    padding:10px 20px;
    font-weight:600;
    display:inline-block;
    border-radius:0 0 8px 8px;
}

.fleet-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    padding:15px;
}

.fleet-content{
    padding:20px;
}

.fleet-content h3{
    font-size:22px;
    color:#2f3542;
    margin-bottom:15px;
}

.fleet-content ul{
    list-style:none;
    padding:0;
    margin:0 0 20px;
}

.fleet-content ul li{
    padding:6px 0;
    color:#666;
}

.fleet-content ul li i{
    color:#ff2d55;
    margin-right:6px;
}

.fleet-btn{
    display:inline-block;
    background:#ff2d55;
    color:#fff;
    padding:12px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

.fleet-btn:hover{
    background:#000;
    color:#fff;
    text-decoration:none;
}