
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #2b2c3b, #3c3c4c);
  font-family: 'Montserrat', sans-serif;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 900px;
  width: 100%;
}

h1 {
  font-size: 4.5em;
  font-weight: 600;
  margin-bottom: 10px;
}

.slogan {
  font-size: 1.5em;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 40px;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.btn {
  background: #f5c88f;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ffd5a8;
}

.car {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}
