body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
}
.text-lg {
  font-size: 1.25em;
  line-height: 1.1;
}
.promo-banner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.banner-desktop {
  display: block;
}
.banner-mobile {
  display: none;
}
@media (max-width: 768px) {
  .banner-desktop {
    display: none;
  }
  .banner-mobile {
    display: block;
  }
}
.review-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.review {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.review img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.review p {
  margin: 0.5em 0;
}
.cta-button {
  display: inline-block;
  background-color: #032c4b;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 30px;
}
.center {
  text-align: center;
}
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.car-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
}
.car-card img {
  max-width: 100%;
  height: auto;
}
.car-type {
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
  text-transform: uppercase;
}
.car-name {
  font-size: 1.25em;
  font-weight: bold;
  color: #032c4b;
  margin: 5px 0;
}
.car-price {
  font-weight: bold;
  color: #032c4b;
  margin-top: 10px;
}
.continue-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #029db3;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
.icons {
  margin-top: 15px;
  font-size: 1.2em;
  color: #777;
}