
        /* Base container styles */
        .ly_product_description_1 {
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .ly_product_description_1 .d_title {
            margin-bottom: 30px;
        }
        
        .ly_product_description_1 .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            overflow: visible;
            background: linear-gradient(to bottom, #f8fff8 0%, #ffffff 100%);
        }
        
        /* Typography colors for H1, H2, H3 only */
        .ly_product_description_1 h1 {
            color: #2E8B57; /* Palm green for main title */
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .ly_product_description_1 h2 {
            color: #2E8B57; /* Palm green for section headers */
            font-size: 2rem;
            margin: 40px 0 20px;
            font-weight: 600;
        }
        
        .ly_product_description_1 h3 {
            color: #2E8B57; /* Palm green for subsection headers */
            font-size: 1.5rem;
            margin: 25px 0 15px;
            font-weight: 600;
        }
        
        /* Problem-Solution Layout */
        .problem-solution-container {
            display: flex;
            flex-wrap: wrap;
            margin: 50px 0;
            align-items: center;
        }
        
        .problem-text {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            color: #2E8B57; /* Problem text color */
            background-color: rgba(46, 139, 87, 0.05);
            border-radius: 8px;
        }
        
        .solution-media {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            position: relative;
        }
        
        /* Animation containers */
        .animation-container {
            width: 100%;
            height: 300px;
            position: relative;
            background: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .solution-icon {
            position: absolute;
            width: 100px;
            height: 100px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.5s ease;
        }
        
        /* Sunlight animation */
        @keyframes sunlight-sweep {
            0% { transform: translateX(-100%) rotate(30deg); opacity: 0; }
            50% { opacity: 0.8; }
            100% { transform: translateX(200%) rotate(30deg); opacity: 0; }
        }
        
        .sunlight-beam {
            position: absolute;
            width: 200%;
            height: 40px;
            background: linear-gradient(90deg, transparent, #FF9A3D, transparent);
            opacity: 0;
            pointer-events: none;
            transform-origin: center;
        }
        
        /* Leaf growth animation */
        @keyframes grow-leaf {
            0% { transform: scale(0) rotate(0deg); opacity: 0; }
            100% { transform: scale(1) rotate(0deg); opacity: 1; }
        }
        
        .leaf {
            position: absolute;
            width: 30px;
            height: 30px;
            background: no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232E8B57'%3E%3Cpath d='M17 8C8 10 5 16 5 16C5 16 12 21 17 8Z' stroke='%232E8B57' stroke-width='0.5'/%3E%3C/svg%3E");
            opacity: 0;
        }
        
        /* Interactive expansion */
        .steps-container {
            display: none;
            margin-top: 20px;
            padding: 20px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' opacity='0.03'%3E%3Cpath d='M20,10 Q30,0 40,10 T60,10 T80,10 T100,10 T100,30 Q100,40 90,40 T80,40 T60,40 T40,40 T20,40 T10,40 Q0,40 0,30 T0,10 Q0,0 10,0 T20,10' fill='%232E8B57'/%3E%3C/svg%3E");
            border-radius: 8px;
        }
        
        .steps-container.visible {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .step-connector {
            stroke: #2E8B57;
            stroke-width: 2;
            stroke-dasharray: 5,3;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Button styles */
        .cta-button {
            display: inline-block;
            padding: 12px 25px;
            background-color: #FF9A3D;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            margin: 10px;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #e07d25;
            transform: translateY(-2px);
        }
        
        /* Technical specs table */
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        
        .specs-table th, .specs-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .specs-table th {
            background-color: rgba(46, 139, 87, 0.1);
            color: #2E8B57;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .problem-solution-container {
                flex-direction: column;
            }
            
            .problem-text, .solution-media {
                min-width: 100%;
            }
        }
    