body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: rgb(245, 247, 250);
  color: rgb(34, 34, 34);
}

.details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgb(255, 255, 255);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.back-btn {
  text-decoration: none;
  color: rgb(102, 102, 102);
  font-weight: 500;
}

.back-btn:hover {
  text-decoration: none;
  color: rgb(79, 70, 229);
  font-weight: 1000;
}

.details-container {
  max-width: 900px;
  margin: 2rem auto;
  background: rgb(255, 255, 255);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}

.car-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
  border-bottom: 1px solid rgb(238, 238, 238);
  padding: 2rem 0 2rem 0;
}

.car-info {
  padding: 2rem;
  line-height: 1.6;
}

.car-info h2 {
  margin-top: 0;
  color: rgb(51, 51, 51);
}
