.about-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.about-page h1 {
  margin-bottom: 1.5rem;
}

.about-section {
  margin-bottom: 2.5rem;
}

.about-section h2 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.about-section h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.about-section p {
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.process-steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-steps li {
  counter-increment: step;
  padding-left: 2.5rem;
  position: relative;
}

.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--color-primary);
  color: var(--color-primary-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.process-steps li strong {
  display: block;
  margin-bottom: 0.25rem;
}

.faq-item {
  margin-bottom: 1.25rem;
}

.faq-item h3 {
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.faq-item p {
  color: var(--color-text-muted);
}

.about-section ol:not(.process-steps) {
  padding-left: 1.5rem;
  color: var(--color-text-muted);
}

.about-section ol:not(.process-steps) li {
  margin-bottom: 0.35rem;
}

/* Blog Section */
.blog-section {
  margin-top: 3rem;
}

.blog-post {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.blog-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-date {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.blog-post p {
  margin-bottom: 1rem;
}

.blog-author {
  font-style: italic;
  margin-top: 1rem;
}
