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

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #2b2116;
  background-color: #f5f0e6; /* soft beige */
}

/* Header */
.site-header {
  text-align: center;
  padding: 32px 16px 12px;
}

.site-title {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.3rem;
  letter-spacing: 0.06em;
}

.site-tagline {
  margin: 6px 0 2px;
  font-size: 1rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 700;
  color: #2b2116;
}

.site-subtitle {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #5b4a34;
}

/* Page container */
.page {
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 0 16px 24px;
}

/* Card sections */
.card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card h2 {
  margin: 0 0 8px 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.2rem;
}

.card p {
  margin: 0 0 10px 0;
  font-size: 0.98rem;
}

.bullet-list {
  margin: 0;
  padding-left: 18px;
}

/* Links and notes */
a {
  color: #1f5fa5;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.note {
  font-size: 0.85rem;
  color: #6b5c45;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 10px 10px 24px;
  font-size: 0.85rem;
  color: #6b5c45;
}
