
        /* Base styles for mobile-first approach */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8fdf8;
        }
        
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 20px 15px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(to bottom, #f8fdf8, #f0f8f0);
        }
        
        .ly_product_description_1 {
            overflow: hidden;
        }
        
        .ly_product_description_1 .d_title {
            margin-bottom: 25px;
        }
        
        /* Typography with color restrictions */
        .ly_product_description_1 h1 {
            color: #2E8B57; /* Palm green for H1 */
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .ly_product_description_1 h2 {
            color: #2E8B57; /* Palm green for H2 */
            font-size: 1.5rem;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        
        .ly_product_description_1 h3 {
            color: #2E8B57; /* Palm green for H3 */
            font-size: 1.3rem;
            margin: 25px 0 12px;
            font-weight: 600;
        }
        
        .ly_product_description_1 p {
            line-height: 1.7;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        
        /* Problem-Solution layout for mobile */
        .problem-solution-container {
            display: flex;
            flex-direction: column;
            margin: 30px 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .problem-text {
            padding: 20px;
            background: rgba(255, 255, 255, 0.95);
        }
        
        .solution-media {
            padding: 15px;
            position: relative;
            min-height: 250px;
        }
        
        /* Animation elements */
        .animated-svg-container {
            width: 100%;
            height: 250px;
            position: relative;
        }
        
        .sunbeam-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 40%, rgba(255, 154, 61, 0.3) 50%, transparent 60%);
            animation: sunbeam-sweep 3s ease-in-out infinite;
            opacity: 0;
        }
        
        @keyframes sunbeam-sweep {
            0% { transform: translateX(-100%); opacity: 0; }
            50% { opacity: 0.7; }
            100% { transform: translateX(100%); opacity: 0; }
        }
        
        .device-svg {
            width: 100%;
            height: 100%;
            filter: grayscale(70%);
            transition: filter 1.5s ease;
        }
        
        .solution-media.active .device-svg {
            filter: grayscale(0%);
        }
        
        .solution-media.active .sunbeam-animation {
            animation: sunbeam-sweep 2s ease-in-out;
        }
        
        /* Growing leaves animation */
        .leaf {
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: #2E8B57;
            border-radius: 50% 0;
            opacity: 0;
            transform: scale(0);
            transition: all 1s ease;
        }
        
        .solution-media.active .leaf {
            opacity: 1;
            transform: scale(1);
        }
        
        .leaf-1 { top: 20%; left: 30%; transition-delay: 0.3s; }
        .leaf-2 { top: 40%; left: 60%; transition-delay: 0.6s; }
        .leaf-3 { top: 70%; left: 40%; transition-delay: 0.9s; }
        
        /* Technical table styling */
        .table-container {
            width: 100%;
            overflow-x: auto;
            margin: 25px 0;
            -webkit-overflow-scrolling: touch;
        }
        
        .tech-table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .tech-table th, .tech-table td {
            padding: 12px 10px;
            text-align: left;
            border-bottom: 1px solid #eaeaea;
            font-size: 0.9rem;
        }
        
        .tech-table th {
            background-color: #2E8B57;
            color: white;
            font-weight: 600;
        }
        
        .tech-table tr:nth-child(even) {
            background-color: #f8f8f8;
        }
        
        /* FAQ styling */
        .faq-item {
            margin-bottom: 20px;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            font-weight: 600;
            color: #2E8B57;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        
        /* CTA Button */
        .cta-button {
            display: inline-block;
            padding: 14px 30px;
            background-color: #FF9A3D;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
            margin: 15px 0;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: #e88a2d;
        }
        
        /* Quote section */
        .quote-section {
            text-align: center;
            margin-top: 40px;
            padding: 25px 15px;
            background-color: #2E8B57;
            border-radius: 12px;
        }
        
        .quote-section h2 {
            color: white;
            margin-bottom: 15px;
        }
        
        .quote-section p {
            color: white;
            margin-bottom: 20px;
        }
        
        /* Product Images */
        .product-image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 25px 0;
        }
        
        .product-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        /* Responsive adjustments for tablets */
        @media (min-width: 600px) {
            .container {
                padding: 30px 25px;
            }
            
            .ly_product_description_1 h1 {
                font-size: 2.2rem;
            }
            
            .ly_product_description_1 h2 {
                font-size: 1.7rem;
            }
            
            .ly_product_description_1 h3 {
                font-size: 1.4rem;
            }
            
            .problem-solution-container {
                flex-direction: row;
                align-items: center;
            }
            
            .problem-text {
                flex: 1;
                padding: 25px;
            }
            
            .solution-media {
                flex: 1;
                padding: 20px;
            }
            
            .product-image-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* Desktop adjustments */
        @media (min-width: 900px) {
            .container {
                max-width: 1200px;
                padding: 40px 30px;
            }
            
            .ly_product_description_1 h1 {
                font-size: 2.5rem;
            }
        }
    