
.hero--page {
  min-height: 300px;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, #8c6d3a 100%);
  position: relative;
  overflow: hidden;
  margin-top: -90px; 
  padding-top: 90px;
}

.hero--page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../../../../images/ZB-Logo/zb_bg.png") center/cover;
  opacity: 0.1;
}

.hero--page .hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-2xl) var(--container-padding);
}

.hero--page .hero__title {
  color: var(--color-white);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-sm);
}

.hero--page .hero__subtitle {
  color: var(--color-white);
  font-size: var(--font-size-lg);
  font-weight: 300;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .hero--page {
    min-height: 400px;
  }

  .hero--page .hero__title {
    font-size: var(--font-size-4xl);
  }
}
@media (min-width: 1024px) {
  .hero--page .hero__title {
    font-size: var(--font-size-5xl);
  }
}
.main {
  min-height: calc(100vh - 90px);
  background: var(--color-background);
}
