@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.7;
  padding: 3rem 1.5rem;
}

.legal-container {
  max-width: 720px;
  margin: 0 auto;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 1.5rem;
}

.brand-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: #000000;
}

.logo-icon {
  height: 32px;
  width: 32px;
  border-radius: 6px;
  object-fit: cover;
}

.back-btn,
.content-section a.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #000000;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.back-btn:hover,
.content-section a.back-btn:hover {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
  transform: translateY(-1px);
}

.back-btn:active {
  transform: translateY(0);
}

.back-btn-bottom-container {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #eaeaea;
  display: flex;
  justify-content: center;
}

.back-btn.large {
  padding: 0.8rem 2.5rem;
  font-size: 1rem;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.meta-info {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 2.5rem;
}

.meta-info span {
  margin-right: 1.5rem;
}

.content-section {
  font-size: 1.05rem;
}

.content-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.content-section h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-section p {
  margin-bottom: 1.25rem;
}

.content-section ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}

.content-section a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.content-section a:hover {
  color: #555555;
}

footer {
  margin-top: 4rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
}
