body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  background-color: #005F5F;
  color: white;
  padding: 0.5rem 2rem;
  text-align: center;
  flex-shrink: 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 80px;
  margin-right: 8px;
}
.logo-text h1 {
  font-size: 1.5em;
  margin: 0;
}
.header-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 5px;
}
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
nav ul li {
  margin: 0 10px;
}
nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 1em;
}
nav ul li a:hover {
  color: #ffdb58;
}
main {
  padding: 20px;
  flex-grow: 1;
  overflow: auto;
}
form {
  max-width: 900px;
  margin: 0 auto;
}
h2 {
  font-size: 2em;
  margin-bottom: 20px;
}
form label {
  font-weight: bold;
  display: block;
  margin: 10px 0 5px;
}
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
form button {
  background-color: #005F5F;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
form button:hover {
  background-color: #004747;
}
footer.footer {
  text-align: center;
  padding: 20px 0;
  background-color: #005F5F;
  margin-top: 40px;
}
footer.footer p {
  font-size: 1em;
  color: white;
}