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

body {
  margin: 0;
  background: #ffffff;
  color: #0f172a;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

/* Page Layout */
.page {
  max-width: 820px;
  margin: 120px auto;
  padding: 0 28px 120px 28px;
}

/* Header */
.header {
  margin-bottom: 90px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 600;
  letter-spacing: -1px;
  margin: 0 0 12px 0;
}

.subtitle {
  font-size: 18px;
  color: #64748b;
}

/* Sections */
section {
  margin-bottom: 70px;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
}

/* Text */
p {
  font-size: 19px;
  margin-bottom: 20px;
  color: #1e293b;
}

ul, ol {
  padding-left: 24px;
  font-size: 19px;
  margin-top: 10px;
}

li {
  margin-bottom: 12px;
}

/* Footer */
footer {
  margin-top: 120px;
  font-size: 14px;
  color: #94a3b8;
}