.hds-page-header {
  position: relative;
  height: 477px;
  background-color: var(--hds-color-text);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hds-color-frame-contrast);
  text-align: center;
}

.hds-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hds-page-header-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 20px;
}

.hds-page-title {
  font-size: 60px;
  font-weight: 400;
  margin: 0 0 20px 0;
  line-height: 70px;
  color: var(--hds-color-frame-contrast);
}

.hds-breadcrumb {
  font-size: 14px;
  margin: 0;
}

.hds-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hds-breadcrumb a:hover {
  color: var(--hds-color-primary);
}

.hds-breadcrumb #breadcrumbs {
  margin: 0;
}

/* Responsive styles */
@media (max-width: 991px) {
  .hds-page-header {
    height: 350px;
  }
  
  .hds-page-title {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 576px) {
  .hds-page-header {
    height: 280px;
  }
  
  .hds-page-title {
    font-size: 28px;
    line-height: 35px;
  }
  
  .hds-breadcrumb {
    font-size: 12px;
  }
}
