body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
}

.truck-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.truck-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.truck-img {
  height: 200px;
  object-fit: cover;
}
