.fleet-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 10%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url(../Assets/fleet_service.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
}

.fleet-hero .hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.fleet-hero .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}


.content-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.content-section h2 {
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 15px;
}

.content-section p {
    margin-bottom: 20px;
    color: #444;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #d32f2f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.service-box h3 {
    color: #0d47a1;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.service-box ul {
    padding-left: 20px;
    color: #444;
}

.service-box li {
    margin-bottom: 8px;
}

.benefits-section {
    background: white;
    margin-top: 60px;
    padding: 50px 30px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}


.benefits-section ul {
    padding-left: 20px;
    margin-top: 20px;
}

.benefits-section li {
    margin-bottom: 12px;
    color: #444;
}