.hero-banner.hero-bg {
  position: relative;
  color: white;
  padding: 100px 20px;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-banner.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  border-radius: 16px;
}

.hero-banner.hero-bg .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-banner.hero-bg h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-banner.hero-bg .subtitle {
  font-size: 1.3rem;
  margin-bottom: 25px;
  opacity: 0.95;
}

.btn-primary {
  background: #ffb703;
  color: #000;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
  font-size: 1.1rem;
}

.btn-primary:hover {
  background: #ff9f1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
