/* Base reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: #111;
  background-color: #ffffff;
}

/* Layout */
.container {
  max-width: 768px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* Typography */
.page-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.subsection-title {
  font-weight: 600;
}

/* Meta text */
.meta-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

/* Sections */
.section {
  margin-top: 2.5rem;
}

.section > * + * {
  margin-top: 1rem;
}

/* Lists */
.bullet-list {
  list-style-type: disc;
  padding-left: 1.5rem;
}
