
.ly_product_description_1 {
  overflow: hidden;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.ly_product_description_1 .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: visible;
}

.story-section {
  padding: 100px 50px;
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

/* Chapter 1: Challenge */
.chapter-challenge {
  background: linear-gradient(rgba(30, 30, 30, 0.8), rgba(30, 30, 30, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23333" /><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23555" stroke-width="2" /></svg>');
}

/* Chapter 2: Journey */
.chapter-journey {
  background: linear-gradient(rgba(232, 195, 158, 0.8), rgba(232, 195, 158, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23E8C39E" /><path d="M0,50 Q25,30 50,50 T100,50" stroke="%23D9B18F" stroke-width="2" fill="none" /></svg>');
  color: #333;
}

/* Chapter 3: Breakthrough */
.chapter-breakthrough {
  background-color: #E67E22;
  position: relative;
  overflow: hidden;
}

.chapter-breakthrough::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="2" fill="%23FFA726" /></svg>');
  animation: sparkle 2s infinite alternate;
}

.specifications {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 50px;
}

.spec-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  margin: 10px;
  flex: 1;
  min-width: 200px;
  color: #333;
  animation: bounce 3s infinite;
}

.spec-item:nth-child(2) {
  animation-delay: 0.5s;
}

.spec-item:nth-child(3) {
  animation-delay: 1s;
}

/* Chapter 4: Celebration */
.chapter-celebration {
  background: linear-gradient(rgba(120, 0, 0, 0.8), rgba(120, 0, 0, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23700" /><circle cx="50" cy="50" r="40" fill="%23900" /></svg>');
}

.results-showcase {
  margin: 50px 0;
}

.result-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  color: #333;
  animation: fadeInUp 1s forwards;
}

.result-item:nth-child(2) {
  animation-delay: 0.5s;
}

.cta-container {
  text-align: center;
  margin-top: 50px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #FFD700;
  color: #900;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  animation: pulse 2s infinite;
}

/* Typography */
.ly_product_description_1 h1,
.ly_product_description_1 h2,
.ly_product_description_1 h3 {
  color: inherit;
  margin-top: 0;
}

.ly_product_description_1 h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.ly_product_description_1 h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

/* Animations */
@keyframes sparkle {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
  0% { 
    opacity: 0;
    transform: translateY(50px);
  }
  100% { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Parallax effect for journey section */
.chapter-journey {
  background-attachment: fixed;
}

/* Responsive design */
@media (max-width: 768px) {
  .story-section {
    padding: 50px 20px;
  }
  
  .specifications {
    flex-direction: column;
  }
}
