.scroll-stack-item-wrapper {
  border: none !important;
  outline: none !important;
  border-radius: 1.5rem;
  overflow: hidden;
}

.scroll-stack-item {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 1.5rem;
  background: none;
  border: none;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: none;
  overflow: hidden;
}

.scroll-stack-item h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.scroll-stack-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 500px;
}

@media (max-width: 768px) {
  .scroll-stack-item {
    padding: 0;
  }

  .scroll-stack-item h3 {
    font-size: 1.5rem;
  }

  .scroll-stack-item p {
    font-size: 0.9rem;
  }
}
