body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
}
header {
  background: #002244;
  color: white;
  padding: 20px;
  text-align: center;
}
.logo {
  max-height: 80px;
}
.hero {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: #e0e0e0;
}
.hero img {
  width: 45%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
section {
  padding: 20px;
}
footer {
  background: #002244;
  color: white;
  text-align: center;
  padding: 10px;
}
form input, form textarea {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
}
button {
  padding: 10px 20px;
  background: #004080;
  color: white;
  border: none;
  cursor: pointer;
}
