
        /* Base styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        
        /* Container styles */
        .ly_product_description_1 {
            overflow: hidden;
            position: relative;
        }
        
        .ly_product_description_1 .d_title {
            margin-bottom: 30px;
        }
        
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }
        
        /* Typography */
        h1, h2, h3 {
            font-weight: 700;
            line-height: 1.3;
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #fff;
        }
        
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
        }
        
        h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        /* Story sections */
        .story-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            transition: all 0.8s ease;
        }
        
        /* Chapter 1: Pain Point */
        .chapter-1 {
            background: linear-gradient(135deg, #6c94a5 0%, #3a5f72 100%);
            color: #fff;
        }
        
        .chapter-1 h2 {
            color: #fff;
        }
        
        /* Chapter 2: Introduction */
        .chapter-2 {
            background: linear-gradient(135deg, #3a5f72 0%, #ff8c42 100%);
            color: #333;
        }
        
        .chapter-2 h2 {
            color: #fff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        /* Chapter 3: Solution */
        .chapter-3 {
            background: linear-gradient(135deg, #0077B6 0%, #2E8B57 100%);
            color: #fff;
        }
        
        .chapter-3 h2 {
            color: #fff;
        }
        
        /* Product icon animation */
        .product-icon {
            position: absolute;
            right: 10%;
            top: 50%;
            transform: translateY(-50%);
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 60px #ff8c42;
            opacity: 0;
            transition: opacity 1s ease, transform 1s ease;
        }
        
        .product-icon.visible {
            opacity: 1;
            transform: translateY(-50%) scale(1.05);
        }
        
        /* Leaf animation elements */
        .leaf {
            position: absolute;
            width: 40px;
            height: 40px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232E8B57'%3E%3Cpath d='M17 3C18.1046 3 19 3.89543 19 5V13C19 14.1046 18.1046 15 17 15H13V19C13 20.1046 12.1046 21 11 21H5C3.89543 21 3 20.1046 3 19V11C3 9.89543 3.89543 9 5 9H9V5C9 3.89543 9.89543 3 11 3H17Z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1s ease, transform 1s ease;
        }
        
        .leaf-1 {
            top: 20%;
            left: 10%;
            transform: rotate(-15deg);
        }
        
        .leaf-2 {
            top: 30%;
            right: 15%;
            transform: rotate(25deg);
        }
        
        .leaf-3 {
            bottom: 20%;
            left: 15%;
            transform: rotate(10deg);
        }
        
        .leaf-4 {
            bottom: 30%;
            right: 10%;
            transform: rotate(-20deg);
        }
        
        .leaf.visible {
            opacity: 0.7;
            transform: scale(1.2) rotate(5deg);
        }
        
        /* Chapter 4: Benefits */
        .chapter-4 {
            background: #F8F5E6;
            color: #333;
        }
        
        .chapter-4 h2 {
            color: #2E8B57;
        }
        
        /* ROI data elements */
        .roi-data {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 40px 0;
        }
        
        .data-point {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin: 15px;
            width: 200px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .data-point.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .data-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0077B6;
            margin-bottom: 10px;
        }
        
        .data-label {
            font-size: 1.1rem;
            color: #333;
        }
        
        /* CTA button */
        .cta-button {
            display: inline-block;
            background: #ff8c42;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 20px 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .cta-button:hover {
            background: #e67335;
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0,0,0,0.3);
        }
        
        /* Parallax layers */
        .parallax-layer {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }
        
        .layer-1 {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' opacity='0.1' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'%3E%3C/path%3E%3C/svg%3E");
            opacity: 0.3;
            z-index: 1;
        }
        
        .layer-2 {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath fill='%23ffffff' opacity='0.2' d='M38.719 13.032c-6.683 11.65-3.843 26.378 6.343 35.625 10.186 9.247 24.876 10.341 36.526 3.657 11.65-6.683 16.154-20.883 12.657-33-3.497-12.117-14.424-20.696-26.906-21.248-12.482-.552-24.536 5.624-28.62 14.966zm18.062 41.686c-10.186 9.247-13.026 23.975-6.343 35.625 6.684 11.65 20.883 16.154 33 12.657 12.117-3.497 20.696-14.424 21.248-26.906.552-12.482-5.624-24.536-14.966-28.62-9.342-4.085-21.879-.519-32.939 6.244z'%3E%3C/path%3E%3C/svg%3E");
            opacity: 0.2;
            z-index: 2;
        }
    