

.scroll-wrapper {
  position: relative;
  width: 100%;
}

.panel {
  height: 200vh;
  position: relative;
  width: 100%;
}

.panel-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
}

.panel-content.fixed {
  position: fixed;
  top: 0;
}

.background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7));
  color: white;
  padding: 60px 40px 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(100vh);
  justify-content: center;
  align-items: start;
  padding-left:10%;
  }

.text-overlay h2 {
  font-size: 3rem !important;
  margin: 0 0 20px 0;
  font-weight: 700;
  text-align:center;
  color:#fff !important;
}

.text-overlay p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
  max-width: 800px;
  text-align:left;
}

@media (max-width: 768px) {
  .text-overlay {
    padding: 40px 20px 30px;
  }
  .text-overlay h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .text-overlay p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
