/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f6f9fc;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.container {
  background: #ffffff;
  max-width: 960px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media(min-width: 700px) {
  .container {
    flex-direction: row;
  }
}

.content {
  flex: 1;
  padding: 3rem 2rem;
}

.content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #111827;
}

.content p {
  margin-bottom: 1rem;
}

.content a {
  color: #3b82f6;
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}

.signoff {
  margin-top: 2rem;
  font-style: italic;
}


.illustration {
  background: #5c6b7a; /* sad grey-blue */
  display: flex;
  align-items: flex-start; /* keep image at the very top */
  justify-content: center;
  padding: 10px 0 0 0; /* only 10px padding at the top */
  overflow: hidden; /* crop parts of image that exceed container */
  max-width: 300px; /* restrict illustration column to 300px */
  width: 100%;
  /* maintain min-height so there is always a little teal visible even if the image is smaller */
  min-height: 100px;
}

.illustration img {
  width: 100%; /* take full width of the illustration column */
  max-width: 300px; /* ensure image never exceeds 300px */
  height: auto; /* keep aspect ratio */
  object-fit: contain; /* show the full image within bounds */
  object-position: top center; /* align image with the top edge */
  transform: none; /* remove previous translate */
  margin-top: 50px; /* push the image down to align with text */
}
