body {
  margin: 0;
  font-family: Georgia, serif;
  color: #333F48;
}

.flex-container {
  display: flex;
  height: 100vh;
}

.image-container {
  flex: 1;
  padding: 0;
  max-width: 50;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%; /* Set width to 100% to stretch the image */
  height: 100%; /* Set height to 100% to fill the entire container */
  object-fit: cover; /* Maintain aspect ratio and cover the container */
}

.content-container {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Change from align-items: flex-start; to center-align the content */
  background-color: #d6d2c4;
}

h1, h2, h3 {
  color: #005F86;
  margin-bottom: 10px;
  text-align: center; /* Center align individual headings */
}

p {
  margin-bottom: 15px;
  text-align: center; /* Center align paragraphs */
}

.button {
  display: inline-block;
  margin-top: 15px; /* Add margin at the top of the button */
  padding: 10px 20px;
  background-color: #005F86;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #004366;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and {
  .flex-container {
    flex-direction: column;
  }
}
