
        * {
            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-color: #f8f9fa;
        }
        
        .ly_product_description_1 {
            overflow: hidden;
            padding: 15px;
        }
        
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0;
            position: relative;
            overflow: visible;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        /* Inquiry Anchor - Mobile Optimized */
        .inquiry-anchor {
            position: sticky;
            top: 10px;
            z-index: 1000;
            margin-bottom: 20px;
        }
        
        .inquiry-anchor summary {
            background: linear-gradient(to right, #FF9A3D, #FFB366);
            color: #F8F5E6;
            padding: 12px 15px;
            cursor: pointer;
            border-radius: 5px;
            font-weight: bold;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .inquiry-anchor[open] summary {
            border-radius: 5px 5px 0 0;
        }
        
        .inquiry-content {
            background: #F8F5E6;
            padding: 15px;
            border-radius: 0 0 5px 5px;
            border: 1px solid #FF9A3D;
        }
        
        .inquiry-content ul {
            list-style: none;
            padding-left: 0;
            margin: 0 0 15px 0;
        }
        
        .inquiry-content li {
            color: #2E8B57;
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            font-size: 14px;
        }
        
        .inquiry-content li span {
            color: #2E8B57;
            margin-right: 8px;
            min-width: 20px;
        }
        
        .inquiry-btn {
            background: #2E8B57;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .inquiry-btn::before {
            content: "💬";
            margin-right: 8px;
        }
        
        /* Typography */
        h1 {
            color: #333;
            font-size: 22px;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        h2 {
            color: #333;
            font-size: 20px;
            margin: 25px 0 15px 0;
            padding-bottom: 8px;
            border-bottom: 2px solid #FF9A3D;
        }
        
        h3 {
            color: #333;
            font-size: 18px;
            margin: 20px 0 10px 0;
        }
        
        p {
            color: #666;
            font-size: 16px;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .client-proof {
            background-color: #f0fff4;
            border-left: 4px solid #2E8B57;
            padding: 12px 15px;
            margin: 15px 0;
            font-style: italic;
            font-size: 15px;
            color: #2d3748;
        }
        
        /* Table Styling - Mobile Responsive */
        .responsive-table {
            width: 100%;
            overflow-x: auto;
            margin-bottom: 20px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        
        th, td {
            border: 1px solid #e2e8f0;
            padding: 12px;
            text-align: left;
            font-size: 14px;
        }
        
        th {
            background-color: #f5f5f5;
            font-weight: 600;
        }
        
        tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        /* FAQ Styling */
        .faq-item {
            margin-bottom: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
        }
        
        .faq-question {
            font-weight: bold;
            color: #2d3748;
            margin-bottom: 8px;
        }
        
        .faq-answer {
            color: #4a5568;
            font-size: 15px;
        }
        
        /* Responsive Adjustments */
        @media (min-width: 768px) {
            .ly_product_description_1 {
                padding: 20px;
            }
            
            .container {
                padding: 20px;
            }
            
            h1 {
                font-size: 24px;
            }
            
            h2 {
                font-size: 22px;
            }
            
            h3 {
                font-size: 20px;
            }
        }
    