/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f9;
  color: #333;
}

/* Navbar */
header {
  background: #222;
  padding: 1em;
}
nav {
  display: flex;
  justify-content: center;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 0 1em;
  font-weight: bold;
}
nav a:hover {
  color: #ff9800;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3em;
  background: #ff9800;
  color: white;
}

/* Slider */
.slider {
  text-align: center;
  padding: 2em;
}
.slider-container img {
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 2em auto;
}
form input, form textarea, form button {
  padding: 0.8em;
  margin: 0.5em 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}
form button {
  background: #222;
  color: white;
  cursor: pointer;
}
form button:hover {
  background: #ff9800;
}

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1em;
  margin-top: 2em;
}

/* Responsive */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
  }
  .hero {
    padding: 2em;
  }
}
