* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #020617;
  color: white;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.nav a {
  color: white;
  text-decoration: none;
  margin-left: 16px;
  font-weight: 600;
}

.container {
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 16px;
}

.car-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}