
        /* Base container styles */
        .ly_product_description_1 {
            overflow: hidden;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .ly_product_description_1 .d_title {
            margin-bottom: 30px;
        }
        
        /* Container for content with max-width */
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            overflow: visible;
            background: #fafafa;
        }
        
        /* Headings with specific colors only for this container */
        .container h1 {
            color: #FF7700;
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .container h2 {
            color: #0098A8;
            font-size: 1.8rem;
            margin-bottom: 15px;
            border-bottom: 2px solid #C4B9A4;
            padding-bottom: 10px;
        }
        
        .container h3 {
            color: #B89F65;
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        
        /* Comparison table with Middle Eastern luxury style */
        .comparison-matrix {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background: white;
            border: 2px solid #C4B9A4;
            border-radius: 5px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .comparison-matrix th, .comparison-matrix td {
            padding: 15px;
            text-align: center;
            border: 1px solid #e0e0e0;
        }
        
        .comparison-matrix th {
            background-color: #C4B9A4;
            color: white;
            font-weight: bold;
        }
        
        .comparison-matrix tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .comparison-matrix tr:hover {
            background-color: rgba(184, 159, 101, 0.1);
        }
        
        .our-product {
            background-color: rgba(255, 119, 0, 0.08);
            font-weight: bold;
            color: #FF7700;
        }
        
        /* CTA button styling */
        .cta-button {
            display: inline-block;
            background-color: #0098A8;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            border: 2px solid #B89F65;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #007a88;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        /* Content sections */
        .content-section {
            margin-bottom: 40px;
            padding: 20px;
            background: white;
            border-radius: 5px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .benefit-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .benefit-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        
        .benefit-list li:before {
            content: "💎";
            position: absolute;
            left: 0;
            color: #FF7700;
        }
        
        /* Technical specs */
        .tech-specs {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .spec-item {
            background: #f5f5f5;
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #0098A8;
        }
        
        .spec-name {
            font-weight: bold;
            color: #0098A8;
        }
        
        .spec-value {
            color: #FF7700;
            font-size: 1.1rem;
        }
    