body {
  background-color: #003366;
  color: #f0f0f0;
  font-family: Arial, sans-serif;
  margin: 0;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #002244;
  padding: 10px 20px;
  flex-wrap: wrap;
}
.logo {
  height: 140px;
}
.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 10px 0 0 0;
}
.menu li a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: bold;
}
main {
  padding: 30px;
}
.content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.text-content {
  flex: 1;
}
.image-content {
  flex: 1;
  display: flex;
  align-items: stretch;
}
.image-content img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
footer {
  background-color: #001f3f;
  text-align: center;
  padding: 20px 0;
}
form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin-top: 20px;
}
form input, form textarea {
  margin-bottom: 10px;
  padding: 10px;
}
form button {
  padding: 10px;
  background-color: #0074D9;
  color: white;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }
  .image-content img {
    height: auto;
    width: 100%;
  }
}