/* Ensure consistent image container sizing */
.car-image-container {
  width: 100%;
  height: 200px; /* Fixed height */
  overflow: hidden; /* Hide overflow */
  position: relative;
  background: #f5f5f5; /* Fallback background */
}

.car-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crop to fill container */
  transition: transform 0.3s ease;
}

/* Hover effect (optional) */
.car-image:hover {
  transform: scale(1.05);
}