/**
 * Static/generic page styles.
 * Used for contact/privacy/terms and other CMS-driven pages.
 */

.static-page {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.static-page__header {
  margin-bottom: var(--space-md);
}

.static-page__title {
  margin: 0;
  color: var(--color-text);
  text-align: center;
}

.static-page__content {
  line-height: 1.6;
  color: var(--color-text-muted);
}

.static-page__content h2,
.static-page__content h3 {
  color: var(--color-text);
  margin: 24px 0 8px;
}

.static-page__content p {
  margin: 0 0 16px;
}

.static-page__content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
