.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  min-height: 100vh;
  background: url('/assets/img/hero/bighero.png') no-repeat center center/cover;
  text-align: center;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.hero-buttons {
  position: absolute;
  bottom: 200px; /* adjust this value to position the buttons near the bottom blue line */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-button {
  background-color: #4E80EE;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

/* Responsive tweaks */
@media (min-width: 600px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: row;
  }
}