#who-we-are {
  height: 100vh;
  position: relative;
  background-color: black;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gradient-hill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, black 0%, #e56b00 40%, #e56b00 60%, black 100%);
  background-size: 100% 300%;
  background-position: 0% 0%;
  z-index: 1;
  transition: background-position 0.5s ease;
}

.content {
  z-index: 2;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(50px);
}

h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
