.hero {
  position: relative;
  background: url('/images/hero-bg.jpg') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-hero {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  background-color: var(--theme-color);
  color: white;
  border: none;
}

.btn-primary-hero:hover {
  background-color: #04026A;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background-color: white;
  text-decoration: none;
  color: var(--theme-color);
}

@media (max-width: 768px) {
  .hero {
    height: 45vh;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .btn {
    width: 100%;
    max-width: 300px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .hero-content p {
    margin-bottom: 12px;
  }
}
