body {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

section { padding-block: var(--space-xl); }
section.alt { background: var(--color-bg-alt); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { max-width: 65ch; }

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-title p {
  margin-inline: auto;
  color: var(--color-text-light);
  font-size: 1.1rem;
}
.section-title h2 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.section-title h2 a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Reusable CTA banner */
.cta-banner {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  margin-inline: var(--space-sm);
  margin-bottom: var(--space-xl);
  padding-block: var(--space-xl);
}
.cta-banner.alt { background: var(--gradient-brand); }
.cta-banner h2,
.cta-banner p { color: #fff; }
.cta-banner .container { max-width: calc(var(--max-width) - 2 * var(--space-sm)); }

@media (min-width: 1180px) {
  .cta-banner { margin-inline: auto; max-width: var(--max-width); }
}
