:root {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: #334155;
  background: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f8fafc;
  color: #334155;
  line-height: 1.7;
}

.container {
  width: min(900px, calc(100% - 32px));
  margin: 40px auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.logo {
  text-align: center;
  margin-bottom: 28px;
}

.logo img {
  width: 120px;
  height: auto;
}

.home-link {
  text-align: center;
  margin-bottom: 30px;
}

.home-link a {
  display: inline-block;
  padding: 10px 18px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.home-link a:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.home-link a:active {
  transform: scale(0.98);
}

h1,
h2,
h3 {
  color: #1e293b;
}

h1 {
  margin: 0 0 10px;
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.15;
}

h2 {
  margin-top: 2.4rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  color: #2563eb;
}

p,
li {
  color: #475569;
}

.updated {
  margin-bottom: 40px;
  text-align: center;
  color: #64748b;
}

ul {
  padding-left: 24px;
}

a {
  color: #2563eb;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #1d4ed8;
}

hr {
  margin: 50px 0;
  border: 0;
  border-top: 1px solid #e2e8f0;
}

.legal-summary {
  margin: 32px 0 36px;
  padding: 20px;
  border-left: 3px solid #ff674d;
  border-radius: 10px;
  background: #f8fafc;
}

.legal-summary-title {
  margin-top: 0;
  font-weight: 700;
  color: #334155;
}

footer {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  color: #475569;
  font-size: 0.8rem;
}

@media (max-width: 700px) {
  .container {
    width: calc(100% - 24px);
    margin: 16px auto;
    padding: 28px 22px;
    border-radius: 18px;
  }

  .logo img {
    width: 100px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.2rem;
  }

footer {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  color: #475569;
  font-size: 0.8rem;
}

.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
}

.legal-footer-links a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-footer-links a:hover {
  color: #2563eb;
}

}