
        /* Global Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Product Description Styles */
        .ly_product_description_1 {
            overflow: hidden;
            padding: 30px;
        }
        
        .ly_product_description_1 .d_title {
            margin-bottom: 30px;
            border-bottom: 3px solid #E67E22;
            padding-bottom: 15px;
        }
        
        h1, h2, h3, h4 {
            color: #2c3e50;
            font-weight: 700;
        }
        
        h1 {
            font-size: 2.5rem;
            color: #E67E22;
            margin-bottom: 20px;
        }
        
        h2 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #E67E22;
        }
        
        h3 {
            font-size: 1.4rem;
            color: #E67E22;
            margin: 20px 0 10px;
        }
        
        blockquote {
            background: linear-gradient(to right, rgba(230, 126, 34, 0.1), transparent);
            border-left: 5px solid #E67E22;
            padding: 20px;
            margin: 25px 0;
            font-style: italic;
            font-size: 1.2rem;
        }
        
        /* Technical Specifications Dashboard */
        .tech-dashboard {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .tech-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 4px solid #E67E22;
            transition: transform 0.3s ease;
        }
        
        .tech-card:hover {
            transform: translateY(-5px);
        }
        
        .tech-card h4 {
            color: #2c3e50;
            margin-top: 0;
            font-size: 1.2rem;
        }
        
        .tech-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #E67E22;
            margin: 10px 0;
        }
        
        .tech-benefit {
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        
        /* Certification Badges */
        .certification-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        
        .badge {
            background: linear-gradient(145deg, #E8C39E, #f0d4b3);
            border: 2px solid #E67E22;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 600;
            color: #2c3e50;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        /* CTA Buttons */
        .cta-container {
            display: flex;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .cta-button {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .cta-primary {
            background: #E67E22;
            color: white;
            border: 2px solid #E67E22;
        }
        
        .cta-primary:hover {
            background: #d35400;
            border-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
        }
        
        .cta-secondary {
            background: transparent;
            color: #E67E22;
            border: 2px solid #E67E22;
        }
        
        .cta-secondary:hover {
            background: rgba(230, 126, 34, 0.1);
            transform: translateY(-3px);
        }
        
        /* Challenge-Solution Section */
        .challenge-solution {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #006400;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .tech-dashboard {
                grid-template-columns: 1fr;
            }
            
            .cta-container {
                flex-direction: column;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
    