.vehicle-filter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.filter-buttons button {
  background: #F1F4FA;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 25px;
  transition: background 0.3s;
  outline: none;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: #d52d49;
  color: #fff;
  outline: none;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.vehicle-card {
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0px 10px 30px -12px rgba(94.00000000000004, 87, 131, 0.26);
  padding: 12px;
}

.vehicle-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px !important;
}

.vehicle-card h3 {
  color: #d52d49;
  font-size: 22px;
  margin: 0 0 10px 0;
}

.vehicle-card p {
  color: #555;
  font-size: 15px;
}

.vehicle-grid {
  row-gap: 30px;
}

.vehicle-item {
  display: flex;
  justify-content: center;
}

.vehicle-card {
  width: 100%;
}
.vehicle-info{
    background-color: #F1F4FA;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
}
.vehicle-info p{
    margin-bottom: 3px;
}

