body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), transparent 28%),
    linear-gradient(180deg, #f7f7f5 0%, #f2f4f7 100%);
  color: #1f2937;
}

main {
  max-width: 920px;
  margin: 24px auto;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a5a11;
  background: rgba(212, 175, 55, 0.12);
}

.language-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(249, 250, 251, 0.9));
}

.language-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.language-copy strong {
  font-size: 14px;
}

.language-copy span {
  color: #6b7280;
  font-size: 14px;
}

.language-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.language-button {
  appearance: none;
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: #ffffff;
  color: #1f2937;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.language-button:hover {
  transform: translateY(-1px);
  border-color: rgba(138, 90, 17, 0.45);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.language-button.is-active {
  background: #1f2937;
  border-color: #1f2937;
  color: #ffffff;
}

h1,
h2 {
  line-height: 1.25;
  margin-top: 1.4em;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
}

h2 {
  font-size: 1.3rem;
}

p,
li {
  font-size: 16px;
}

ul {
  padding-left: 1.2em;
}

li {
  margin: 0.35em 0;
}

.muted {
  color: #6b7280;
}

a {
  color: #8a5a11;
}

a:hover {
  color: #6f470d;
}

.policy-content > :first-child {
  margin-top: 0;
}

@media (max-width: 900px) {
  main {
    margin: 0;
    border-radius: 0;
    min-height: 100vh;
    padding: 22px 18px 32px;
  }

  .language-bar {
    padding: 14px;
  }

  .language-button {
    width: 100%;
    text-align: center;
  }

  .language-switcher {
    width: 100%;
  }
}
