.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url('media/program-hero.jpg');
  background-size: cover;
  background-position: 0% 60%;
  background-repeat: no-repeat;
}

.hero-content {
  position: absolute;
  padding: 0 2vw;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-family: "Big Shoulders", Arial;
  font-weight: 900;
  letter-spacing: 2px;
  font-style: normal;
  color: white;
}

.hero-title-strong {
  color: rgb(228, 83, 47);
}

.hero-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 0.5rem;
}

.program-button {
  height: 50px;
  font-size: 1.1rem;
  min-width: 140px;
  padding: 0 25px;
  margin-left: 2vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #1f2a44;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-style: normal;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.program-button:hover {
  background-color: rgb(228, 83, 47);
  color: white;
}