.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.page {
  padding: 5rem 0;
}

.page-header {
  margin-bottom: 2rem;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-intro {
  color: var(--muted);
}

.page-content {
  max-width: 800px;
}

.section {
  padding: 6rem 0;
}

.section-white {
  background: var(--white);
}

.section-light {
  background: #f8f9fa;
}

.section-dark {
  background: var(--dark-blue);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-kicker {
  margin: 0 0 0.75rem;
  color: #6b6b6b; /* statt sehr hell */
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
}


.section-heading.center {
  margin-bottom: 3rem;
  text-align: center;
}

.heading-line {
  width: 80px;
  height: 4px;
  margin: 1rem auto 0;
  background: var(--gold);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
}

.section p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

:root {
  --header-height: 80px;
}

section[id] {
  scroll-margin-top: var(--header-height);
}