body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
header.site-header {
  background: #000;
  color: #fff;
  padding: 1rem 0;
}
header .brand h1 {
  margin: 0;
  font-size: 1.8rem;
}
.main-nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
}
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-text {
  position: relative;
  z-index: 2;
}
.btn-primary {
  display: inline-block;
  background: #ffcc00;
  padding: 10px 20px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}
.section-cars {
  text-align: center;
  padding: 60px 0;
}
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 20px;
}
.btn-outline {
  display: inline-block;
  border: 2px solid #ffcc00;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
}
.btn-outline:hover {
  background: #ffcc00;
  color: #000;
}
.section-contact {
  text-align: center;
  padding: 50px 0;
}
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  border-radius: 50%;
  padding: 10px;
}
.whatsapp-fab img {
  width: 40px;
}
footer.site-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
}