
        /* Base Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f8f8f8;
        }
        
        /* Container Styles */
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(to bottom, #ffffff, #f5f9f0);
        }
        
        /* Product Description Layout */
        .ly_product_description_1 {
            overflow: hidden;
        }
        
        .ly_product_description_1 .d_title {
            margin-bottom: 30px;
            text-align: center;
        }
        
        /* Typography */
        h1, h2, h3 {
            font-weight: 700;
            margin-top: 0;
        }
        
        h1 {
            font-size: 2.5rem;
            color: #2E8B57; /* Palm green for problem modules */
            margin-bottom: 20px;
        }
        
        h2 {
            font-size: 1.8rem;
            color: #2E8B57;
            margin-bottom: 15px;
        }
        
        h3 {
            font-size: 1.4rem;
            color: #2E8B57;
            margin-bottom: 10px;
        }
        
        /* Section Styles */
        .section {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            min-height: 400px;
        }
        
        .text-content {
            flex: 1;
            padding: 30px;
        }
        
        .media-content {
            flex: 1;
            padding: 30px;
            position: relative;
            min-height: 300px;
        }
        
        /* Problem Module (Text on left) */
        .problem-module {
            background-color: rgba(46, 139, 87, 0.05);
            border-radius: 12px;
        }
        
        .problem-module .text-content {
            color: #2E8B57; /* Palm green for problem text */
        }
        
        /* Solution Module (Media on right) */
        .solution-module {
            background-color: rgba(255, 154, 61, 0.05);
            border-radius: 12px;
        }
        
        /* Benefit Module */
        .benefit-module {
            background-color: rgba(46, 139, 87, 0.05);
            border-radius: 12px;
        }
        
        /* Animation Elements */
        .animated-svg {
            width: 100%;
            height: 300px;
            background: #f0f0f0;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .sunbeam {
            position: absolute;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, #FF9A3D, transparent);
            top: 50%;
            opacity: 0;
            animation: sunbeam 3s ease-in-out infinite;
        }
        
        @keyframes sunbeam {
            0% { opacity: 0; transform: translateX(-100%); }
            50% { opacity: 1; transform: translateX(0); }
            100% { opacity: 0; transform: translateX(100%); }
        }
        
        .leaf {
            position: absolute;
            width: 30px;
            height: 30px;
            background-color: #2E8B57;
            border-radius: 50% 0 50% 50%;
            transform: rotate(45deg);
            opacity: 0;
        }
        
        .leaf-1 {
            top: 40%;
            left: 40%;
            animation: growLeaf 4s ease-in-out infinite 1s;
        }
        
        .leaf-2 {
            top: 60%;
            left: 50%;
            animation: growLeaf 4s ease-in-out infinite 1.5s;
        }
        
        .leaf-3 {
            top: 50%;
            left: 60%;
            animation: growLeaf 4s ease-in-out infinite 2s;
        }
        
        @keyframes growLeaf {
            0% { opacity: 0; transform: rotate(45deg) scale(0); }
            50% { opacity: 1; transform: rotate(45deg) scale(1); }
            100% { opacity: 1; transform: rotate(45deg) scale(1); }
        }
        
        /* Icons */
        .hand-drawn-icon {
            display: inline-block;
            margin-right: 10px;
            font-size: 1.5rem;
            filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
        }
        
        /* Step-by-Step Section */
        .steps-container {
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20,30 Q40,15 60,30 T100,30 M20,50 Q40,35 60,50 T100,50 M20,70 Q40,55 60,70 T100,70' stroke='%232E8B57' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E");
            padding: 30px;
            border-radius: 12px;
            margin-top: 40px;
        }
        
        .step {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background-color: #FF9A3D;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .step-connector {
            position: absolute;
            left: 20px;
            top: 40px;
            bottom: -30px;
            width: 2px;
            background-color: #FF9A3D;
            opacity: 0.5;
        }
        
        .step:last-child .step-connector {
            display: none;
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 40px;
            background-color: rgba(255, 154, 61, 0.1);
            border-radius: 12px;
            margin-top: 40px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #FF9A3D;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            margin: 10px;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: #2E8B57;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .section {
                flex-direction: column;
            }
            
            .text-content, .media-content {
                padding: 20px;
            }
        }
    