/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.7;
  color: #1a1a2e;
  background: #fafafa;
}

/* ── Layout ── */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.page-header {
  padding: 48px 0 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.5px;
}

.effective-date {
  margin-top: 8px;
  font-size: 0.88rem;
  color: #6b7280;
}

/* ── Content Card ── */
.content-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 40px 44px;
  margin: 32px auto 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* ── Sections ── */
.policy-section {
  margin-bottom: 36px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1.18rem;
  font-weight: 650;
  color: #1a1a2e;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f5;
}

.policy-section p {
  font-size: 0.94rem;
  color: #374151;
  margin-bottom: 12px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
}

.policy-section ul:last-child {
  margin-bottom: 0;
}

.policy-section li {
  font-size: 0.94rem;
  color: #374151;
  padding: 3px 0 3px 20px;
  position: relative;
}

.policy-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6366f1;
}

/* ── Footer ── */
.page-footer {
  margin-top: auto;
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #9ca3af;
  border-top: 1px solid #e5e7eb;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .page-header { padding: 32px 0 0; }
  .page-header h1 { font-size: 1.6rem; }
  .content-card { padding: 28px 22px; margin: 24px 16px 32px; }
  .policy-section h2 { font-size: 1.08rem; }
  .policy-section p, .policy-section li { font-size: 0.9rem; }
}
