.fleet-section {
    padding: 60px;
}

.fleet-top {
    margin-bottom: 40px;
    text-align: center;
}

    .fleet-top h2 {
        font-family: var(--serif);
        font-size: 35px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 15px;
    }

        .fleet-top h2 em {
            color: var(--gold);
            font-style: normal;
        }

    .fleet-top p {
        color: var(--muted);
        font-size: 16px;
        margin: 0 auto;
    }

.fleet-card {
    border: 1px solid var(--muted);
    overflow: hidden;
    transition: 0.3s;
    margin-bottom: 25px;
}

    .fleet-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .fleet-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.fleet-content {
    padding: 20px;
}

    .fleet-content h4 {
        font-size: 25px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 10px;
    }

    .fleet-content p {
        color: var(--muted);
        margin-bottom: 10px;
    }

    .fleet-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .fleet-content ul li {
            color: var(--muted);
            margin-bottom: 6px;
            display: flex;
            gap: 8px;
            align-items: center;
        }

            .fleet-content ul li i {
                color: var(--gold);
            }

@media (max-width: 992px) {
    .fleet-top {
        margin-bottom: 20px;
    }

    .fleet-section {
        padding: 50px 20px;
    }

    .fleet-card {
        margin-bottom: 0;
    }

    .fleet-top h2 {
        font-size: 25px;
    }

    .fleet-top p {
        text-align: justify;
    }
}
