
        /* Base Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }
        
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }
        
        /* Layout Container */
        .ly_product_description_1 {
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background: white;
        }
        
        .ly_product_description_1 .d_title {
            margin-bottom: 30px;
            text-align: center;
            padding: 40px 20px 20px;
        }
        
        /* Story Sections */
        .story-section {
            padding: 60px 40px;
            position: relative;
            transition: all 0.5s ease;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        /* Chapter 1: Pain Points */
        .chapter-1 {
            background: linear-gradient(135deg, #e6f0ff 0%, #c8dff2 100%);
            color: #2c3e50;
        }
        
        /* Chapter 2: Introduction */
        .chapter-2 {
            background: linear-gradient(135deg, #ffecc7 0%, #ffd89b 100%);
            color: #34495e;
        }
        
        /* Chapter 3: Solution */
        .chapter-3 {
            background: linear-gradient(135deg, #d1f2eb 0%, #a3e4d7 100%);
            color: #21618c;
            position: relative;
        }
        
        /* Chapter 4: Benefits */
        .chapter-4 {
            background: linear-gradient(135deg, #fef9e7 0%, #fcf3cf 100%);
            color: #7d6608;
        }
        
        /* Typography */
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        h2 {
            font-size: 2rem;
            color: #2980b9;
            margin: 30px 0 20px;
            font-weight: 600;
        }
        
        h3 {
            font-size: 1.5rem;
            color: #3498db;
            margin: 25px 0 15px;
            font-weight: 600;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        /* Decorative Elements */
        .sun-icon {
            position: absolute;
            top: 30px;
            right: 40px;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, #ff9900 30%, #ffcc00 70%);
            border-radius: 50%;
            box-shadow: 0 0 30px #ff9900;
            opacity: 0;
            transition: opacity 1s ease;
        }
        
        .leaf-decoration {
            position: absolute;
            bottom: 20px;
            left: 30px;
            width: 100px;
            height: 100px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%232E8B57' d='M50,10 C30,10 20,40 20,60 C20,80 40,90 50,90 C60,90 80,80 80,60 C80,40 70,10 50,10 Z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            opacity: 0;
            transform: scale(0.8);
            transition: all 1s ease;
        }
        
        .fruit-data {
            display: inline-block;
            background: #f1c40f;
            color: #7d6608;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 10px 5px;
            font-weight: bold;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        /* Technical Specs */
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .spec-card {
            background: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        /* CTA Buttons */
        .cta-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 40px 0;
            justify-content: center;
        }
        
        .cta-button {
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .cta-primary {
            background: #0077B6;
            color: white;
        }
        
        .cta-secondary {
            background: #2E8B57;
            color: white;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes grow {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        .animate-in {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .animate-grow {
            animation: grow 1s ease forwards;
        }
    