body {
  padding: 0;
  margin: 0;
  font-family: 'Source Serif 4', serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

.header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.langs {
  background: hsl(0deg 0% 90% / 74%);
  border-bottom-left-radius: 1em;
}

.langs__list {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  --padding: 0.5em 0.75em;
  text-transform: uppercase;
  font-weight: 700;
}

.langs__item {}

.langs__item--current {
  font-weight: 400;
  padding: var(--padding);
}

.langs__link {
  padding: var(--padding);
  display: block;
  color: black;
}

.langs__link:hover {
  background-color: hsl(0deg 0% 90% / 74%);
}

.hero {
  position: relative;
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  display: block;
  max-height: 90vh;
}

.hero__logo {
  position: absolute;
  left: 10%;
  bottom: 10%;
  width: 30%;
  height: auto;
  max-width: 225px;
}

/* Main Content */
.content {
  --padding: min(10vw, 2rem);
  max-width: 555px;
  margin: 0 auto;
  padding-inline: var(--padding);
  margin-block: var(--padding);
}

.content--md a {
  color: #000;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.content--md a:hover {
  color: #666;
}

/* Page Content (Terms, etc.) */
.page-content {
  margin-top: 6rem;
  max-width: 800px;
}

.page-content h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.page-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background-color: #f8f8f8;
  padding: 2rem;
  text-align: center;
}

.footer__link {
  color: #666;
  text-decoration: none;
}

.footer__link:hover {
  color: #000;
  text-decoration: underline;
}

.link {
    color: #333;
}

.link:hover {
    color: #111;
}