* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Georgia', serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.divider { border: none; border-top: 1px solid var(--border); }

/* Shared page content styles */
.section-heading { font-weight: 700; font-size: 28px; margin-bottom: 12px; }
.section-body { line-height: 1.8; opacity: 0.92; }
