body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #111827;
  color: #facc15;
  text-align: center;
  padding: 20px;
}

header img {
  max-height: 80px;
  display: block;
  margin: 0 auto 10px auto;
}

nav {
  background: #facc15;
  padding: 10px;
  text-align: center;
}

nav a {
  margin: 0 15px;
  color: #111827;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  text-align: center;
  background: url('images/flyer.png') no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h2 {
  color: #111827;
  border-bottom: 2px solid #facc15;
  padding-bottom: 5px;
}

.services,
.why-choose,
.contact-form {
  margin: 20px 0;
}

.services ul,
.why-choose ul {
  list-style: none;
  padding: 0;
}

.services li::before,
.why-choose li::before {
  content: '✔';
  color: #facc15;
  margin-right: 10px;
}

.car-section {
  text-align: center;
  margin: 40px 0;
}

.car-section img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

input,
textarea,
button {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-top: 10px;
}

button {
  background-color: #facc15;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #eab308;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: #111827;
  color: #facc15;
  margin-top: 40px;
}
