
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #111;
  color: #fff;
}

.hero {
  background: linear-gradient(to right, #000000cc, #1a1a1acc), url('https://images.unsplash.com/photo-1511919884226-fd3cad34687c');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.5em;
  color: #ccc;
}

.cars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 20px;
  background-color: #1a1a1a;
}

.car {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s;
}

.car:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.car img {
  max-width: 100%;
  border-radius: 10px;
}

.about, .contact {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  background-color: #111;
}

.about h2, .contact h2 {
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 2px solid #444;
  padding-bottom: 10px;
}

.about p, .contact p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1.1em;
}

.whatsapp {
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}
