/* Shared styles — Bizz legal pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #F8F3EB;
  color: #000;
  min-height: 100vh;
  padding: 48px 16px 80px;
}

.container {
  max-width: 680px;
  margin: 0 auto;
}

/* ── Header ── */
.back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  background: #fff;
  border: 2px solid #000;
  border-radius: 999px;
  padding: 6px 14px;
  box-shadow: 0 3px 0 #000;
  margin-bottom: 32px;
  transition: transform 0.1s, box-shadow 0.1s;
}
.back:hover  { transform: translateY(1px); box-shadow: 0 2px 0 #000; }
.back:active { transform: translateY(3px); box-shadow: 0 0 0 #000; }

.page-header {
  background: #F5C518;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 0 #000;
  margin-bottom: 32px;
}

.page-header h1 {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.page-header .intro {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.65);
}

/* ── Sections ── */
.sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  background: #fff;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 4px 0 #000;
}

.section h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #333;
}

.section p + p {
  margin-top: 8px;
}

/* ── Footer ── */
footer {
  margin-top: 48px;
  text-align: center;
  font-size: 0.8rem;
  color: #6B6B6B;
}

footer a {
  color: #000;
  font-weight: 700;
}
