
        /* Base container styles */
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(to bottom, #f8fdf8, #f0f8f0);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }

        .ly_product_description_1 {
            overflow: hidden;
        }

        .ly_product_description_1 .d_title {
            margin-bottom: 30px;
        }

        /* Typography with color restrictions */
        .ly_product_description_1 h1 {
            color: #2E8B57; /* Palm green for H1 */
            font-size: 2.8em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .ly_product_description_1 h2 {
            color: #2E8B57; /* Palm green for H2 */
            font-size: 2em;
            margin: 40px 0 20px;
            font-weight: 600;
        }

        .ly_product_description_1 h3 {
            color: #2E8B57; /* Palm green for H3 */
            font-size: 1.6em;
            margin: 30px 0 15px;
            font-weight: 600;
        }

        .ly_product_description_1 p {
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.1em;
        }

        /* 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;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .solution-media {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            position: relative;
        }

        /* Animation elements */
        .animated-svg-container {
            width: 100%;
            height: 300px;
            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:hover .device-svg {
            filter: grayscale(0%);
        }

        .solution-media:hover .sunbeam-animation {
            animation: sunbeam-sweep 2s ease-in-out;
        }

        /* Growing leaves animation */
        .leaf {
            position: absolute;
            width: 24px;
            height: 24px;
            background-color: #2E8B57;
            border-radius: 50% 0;
            opacity: 0;
            transform: scale(0);
            transition: all 1s ease;
        }

        .solution-media:hover .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 */
        .tech-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            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: 15px;
            text-align: left;
            border-bottom: 1px solid #eaeaea;
        }

        .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: 25px;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .faq-question {
            font-weight: 600;
            color: #2E8B57;
            margin-bottom: 10px;
            font-size: 1.2em;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .problem-solution-container {
                flex-direction: column;
            }
            
            .problem-text, .solution-media {
                min-width: 100%;
            }
            
            .ly_product_description_1 h1 {
                font-size: 2.2em;
            }
            
            .ly_product_description_1 h2 {
                font-size: 1.8em;
            }
        }
    