.hero-background {
  background-image: url('../images/background_pic.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
  padding: 15px 40px;
  border-radius: 8px;
  max-width: 700px;
  width: 100%;
  position: relative;
  top: -90px;
  box-sizing: border-box;
}

.hero-overlay h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 20px;
  margin: 0;
}