
        /* Global Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }
        
        /* Container Styles */
        .ly_product_description_1 {
            overflow: hidden;
        }
        
        .ly_product_description_1 .d_title {
            margin-bottom: 30px;
        }
        
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(to bottom, #ffffff, #f0f8ff);
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 119, 182, 0.1);
        }
        
        /* Typography */
        h1, h2, h3 {
            color: #0077B6;
            font-weight: 600;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #0077B6, #2E8B57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        h2 {
            font-size: 1.8rem;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FF9A3D;
        }
        
        h3 {
            font-size: 1.4rem;
            color: #2E8B57;
            margin: 25px 0 15px;
        }
        
        /* Tropical Tech Specs Section */
        #tropical-tech-specs {
            margin: 40px 0;
            padding: 30px;
            background-color: #F8F5E6;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        /* Certification Badges */
        .certification-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .badge {
            width: 100px;
            height: 100px;
            background-color: #F8F5E6;
            border: 2px solid #FF9A3D;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(255, 154, 61, 0.2);
            transition: all 0.3s ease;
        }
        
        .badge:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 15px rgba(255, 154, 61, 0.4);
        }
        
        .badge i {
            font-size: 2.5rem;
            color: #FF9A3D;
        }
        
        /* Parameter Dashboards */
        .parameter-dashboards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .gauge {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 119, 182, 0.1);
            text-align: center;
        }
        
        .gauge-title {
            font-weight: 600;
            color: #0077B6;
            margin-bottom: 15px;
        }
        
        .gauge-container {
            position: relative;
            width: 200px;
            height: 100px;
            margin: 0 auto 15px;
            overflow: hidden;
        }
        
        .gauge-fill {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: conic-gradient(#0077B6, #2E8B57, #0077B6);
            border-radius: 100px 100px 0 0;
            transform-origin: center bottom;
            transform: rotate(0deg);
            transition: height 1.5s ease-in-out;
        }
        
        .gauge-needle {
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 4px;
            height: 90px;
            background-color: #2E8B57;
            transform-origin: bottom center;
            transform: translateX(-50%) rotate(0deg);
            transition: transform 1.5s ease-in-out;
            z-index: 2;
        }
        
        .gauge-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0077B6;
            margin-top: 10px;
        }
        
        .gauge-label {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Full Specifications Table */
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .specs-table th {
            background-color: #FF9A3D;
            color: #F8F5E6;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .specs-table tr:nth-child(even) {
            background-color: rgba(255, 154, 61, 0.05);
        }
        
        .specs-table tr:hover {
            background-color: rgba(255, 154, 61, 0.1);
        }
        
        .specs-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        /* Content Styles */
        .content-section {
            margin-bottom: 40px;
        }
        
        .feature-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .feature-list li {
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
        }
        
        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2E8B57;
            font-weight: bold;
        }
        
        .cta-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .cta-button {
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .cta-primary {
            background: linear-gradient(to right, #0077B6, #2E8B57);
            color: white;
        }
        
        .cta-secondary {
            background-color: #FF9A3D;
            color: white;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .parameter-dashboards {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }
    