
.ly_product_description_1 {
  overflow: hidden;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.ly_product_description_1 .d_title {
  margin-bottom: 30px;
}

.story-section {
  transition: all 0.5s ease;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-20px);}
  60% {transform: translateY(-10px);}
}

@keyframes sparkle {
  0% {opacity: 0.3;}
  50% {opacity: 1;}
  100% {opacity: 0.3;}
}

.feature-item h3 {
  animation: bounce 2s infinite;
}

.benefit-item {
  animation: sparkle 3s infinite;
}

/* Parallax effect for background elements */
.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
