* {
  box-sizing: border-box;
}

body {
  max-width: 880px;
  margin: 0 auto;
  padding: 28px 20px 48px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #202124;
  background: #ffffff;
}

.legal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.home-link {
  color: #1a73e8;
  text-decoration: none;
}

.home-link:hover {
  text-decoration: underline;
}

.language-switcher {
  display: flex;
  gap: 4px;
  padding: 3px;
  border: 1px solid #d8dee8;
  border-radius: 10px;
  background: #f5f7fa;
}

.language-switcher button {
  border: 0;
  border-radius: 7px;
  padding: 7px 10px;
  color: #4b5563;
  background: transparent;
  font: 700 12px/1 Arial, sans-serif;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: #ffffff;
  background: #5631d9;
}

[data-legal-language][hidden] {
  display: none;
}

h1,
h2 {
  line-height: 1.25;
  color: #1f2933;
}

h1 {
  margin-bottom: 8px;
  font-size: 2rem;
}

h2 {
  margin-top: 32px;
  font-size: 1.25rem;
}

p,
li {
  font-size: 1rem;
}

a {
  color: #1a73e8;
}

.updated {
  margin-top: 0;
  color: #5f6368;
}

.page-footer {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 560px) {
  body {
    padding-top: 20px;
  }

  .legal-toolbar {
    margin-bottom: 24px;
  }

  h1 {
    font-size: 1.7rem;
  }
}
