
:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
}

h1, h2 {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  text-align: center;
}

h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

a {
  color: var(--color-primary-light);
}

.section-intro {
  font-size: 1.1rem;
  color: #666;
}

.section-header h2 {
  text-align: center;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-wrap: balance;
  }
} 