/* Removed policy-bottom-card helpers as the card is no longer used */
/* Unified header layout and typography (no colors) */
.page-hero {
  padding: 3rem 0;
  text-align: center;
  /* Ensure consistent height and vertical centering across pages */
  min-height: 20vh;
  display: grid;
  align-content: center;
  /* Enforce white text across all page hero variants */
  color: #fff;
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
  color: #fff;
}

.page-hero p,
.page-hero .page-subtitle {
  margin: 0;
  font-size: 1.125rem;
  color: #fff;
}

/* Contact page hero: solid brand orange background */
.contact-hero {
  background: var(--primary-color);
}

@media (max-width: 768px) {
  .page-hero {
    padding: 2rem 0;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
}
