* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #ffffff;
  color: #222;
}

.page {
  min-height: 100vh;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card {
  background: #fff;
  max-width: 900px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.split {
  display: flex;
}

.card-image {
  flex: 1;
  min-height: 100%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: saturate(0.95) contrast(0.95);
}

.card-content {
  flex: 1;
  padding: 60px 50px;
  text-align: center;
  line-height: 1.6;
}

.logo h1 {
  font-size: 42px;
  margin-bottom: 30px;
}

.headline {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mail {
  margin: 20px 0;
  font-weight: 600;
}

.mail a {
  color: #000;
  text-decoration: none;
}

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

.footer {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .split {
    flex-direction: column;
  }

  .card-image {
    aspect-ratio: 16 / 10;
  }

  .card-content {
    padding: 36px 20px;
  }
}

@media (min-width: 1200px) {
  .card {
    max-width: 1000px;
  }
}
