body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fafafa;
  color: #333;
  margin: 0;
  padding: 0;
}

.model-details {
  text-align: center;
  margin: 2rem;
}

.model-details img {
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brand-list {
  margin: 2rem auto;
  max-width: 500px;
  background: #fff;
  border-radius: 10px;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand-list h2 {
  text-align: center;
  color: #444;
}

.brand-list ul {
  list-style-type: none;
  padding: 0;
}

.brand-list li {
  background: #f0f0f0;
  margin: 0.5rem;
  padding: 0.5rem;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s;
}

.brand-list li:hover {
  background: #e0e0e0;
}
