.cars {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.cars h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.cars-container {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: 1 column */
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.car-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.car-card:hover {
  transform: translateY(-5px);
}

.car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.car-card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
}

.car-card p {
  font-size: 14px;
  color: #555;
  padding: 0 15px;
}

.car-card .book-btn {
  margin: 15px 0 20px;
  padding: 10px 18px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.car-card .book-btn:hover {
  background: #0056b3;
}

/* ✅ Big screen responsive */
@media (min-width: 768px) {
  .cars-container {
    grid-template-columns: repeat(2, 1fr); /* 2 cars side by side */
  }
}
