body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo img {
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.hero, .page-content {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.5rem;
  font-size: 1rem;
}

form button {
  padding: 0.7rem;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

footer {
  background: #222;
  color: #fff;
  padding: 1rem 2rem;
  text-align: center;
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

footer ul li a {
  color: #ccc;
  text-decoration: none;
}