.page-hero {
  position: relative;
  width: 100vw;                  /* full viewport width */
  margin-left: calc(-50vw + 50%); /* align to left edge like home page */
  background: url("../images/glass-door-2-ai.png") center/cover no-repeat;
  min-height: 10vh;
  max-height: 15vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}


.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(48, 48, 48, 0.35); /* dark overlay for text readability */
}

.page-hero-text {
  position: relative;
  max-width: 900px;
  z-index: 1;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 25px;
}

@media (max-width: 900px) {
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .page-hero p {
    font-size: 1rem;
  }
}
