.page-hero {
  background: linear-gradient(180deg, #101722 0%, #1a2432 100%);
  color: #fff;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.page-hero--contact {
  background: #1b222d url('../assets/images/contact-banner.jpg') no-repeat center / cover;
}

.page-hero--blog {
  margin-top: -80px;
  padding-top: 80px;
}

.page-hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: 52px;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}

.page-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin: 24px auto 0;
  font-weight: 400;
  opacity: 0.9;
  max-width: 680px;
}

.page-hero-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 32px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.page-hero-cta:hover {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .page-hero-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 180px;
  }

  .page-hero--blog {
    margin-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .page-hero-title {
    font-size: 34px;
  }
}