:root {
  --lamborghini-color: rgb(255, 215, 0);
  --ferrari-color: rgb(255, 40, 0);
  --random-color: rgb(40, 167, 69);
  --maserati-color: rgb(0, 0, 50);
  --title-font: 'Montserrat', sans-serif;
  --text-font: 'Poppins', sans-serif;
}

.container h2 {
  font-family: var(--title-font), sans-serif;
  font-size: 2.5rem;
}

.book-cars-quote {
  font-size: 1.5rem;
}

.btn-view-details {
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid black;
  border-radius: 8px;
  font-weight: bold;
  color: black;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-view-details:hover {
  color: white;
  background: black;
  transform: translateY(-2px);
}

.btn-book-now {
  padding: 12px 24px;
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-book-now:hover {
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .btn-view-details, .btn-book-now {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}