.fleet-composition-section {
    background-color: #0F3424;
    padding: 50px 20px;
    color: #fff;
}

.fleet-composition-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.fleet-composition-subtitle {
    color: #00C853;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    width: 100%;
}

.fleet-composition-header-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    display: block;
}

.fleet-composition-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 15px;
    width: 100%;
    display: block;
}

.fleet-nav-buttons {
    display: flex;
    gap: 10px;
    align-self: flex-end;
}

.fleet-nav-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #00C853;
    background-color: transparent;
    color: #00C853;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fleet-nav-button:hover {
    background-color: #00C853;
    color: #fff;
}

.fleet-items-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .fleet-items-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .fleet-items-container {
        grid-template-columns: 1fr;
    }
    
    .fleet-nav-buttons {
        margin-top: 20px;
        align-self: flex-end;
    }
}

.fleet-item {
    border: 1px solid #1A4434;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fleet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.fleet-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.fleet-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-item:hover .fleet-item-image img {
    transform: scale(1.1);
}

.fleet-item-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 15px 15px 10px;
}

.fleet-item-desc {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 15px 15px;
}