
    /* Base container styles */
    .ly_product_description_1 {
      overflow: hidden;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
    }
    
    .ly_product_description_1 .d_title {
      margin-bottom: 30px;
      text-align: center;
    }
    
    .ly_product_description_1 h1 {
      color: #0077B6;
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    
    .ly_product_description_1 h2 {
      color: #FF9A3D;
      font-size: 1.8rem;
      margin: 2rem 0 1rem;
    }
    
    .ly_product_description_1 h3 {
      color: #2E8B57;
      font-size: 1.4rem;
      margin: 1.5rem 0 0.5rem;
    }
    
    /* Tropical Tech Specs namespace */
    #tropical-tech-specs {
      max-width: 1440px;
      margin: 0 auto;
      padding: 2rem;
      position: relative;
      overflow: visible;
      background: linear-gradient(to bottom, #F8F5E6, #ffffff);
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 119, 182, 0.15);
    }
    
    /* Certification bar styles */
    .certification-bar {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    
    .cert-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      background-color: #F8F5E6;
      border: 2px solid #FF9A3D;
      border-radius: 12px;
      min-width: 120px;
      transition: all 0.3s ease;
    }
    
    .cert-badge:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(255, 154, 61, 0.5);
    }
    
    .badge-icon {
      width: 40px;
      height: 40px;
      background-color: #FF9A3D;
      color: #F8F5E6;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      margin-bottom: 0.5rem;
    }
    
    /* Dashboard gauges */
    .dashboard-section {
      margin: 3rem 0;
      text-align: center;
    }
    
    .gauges-container {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 2rem;
      margin: 2rem 0;
    }
    
    .gauge {
      flex: 1;
      min-width: 220px;
      background: #F8F5E6;
      padding: 1.5rem;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .gauge-title {
      font-weight: bold;
      color: #0077B6;
      margin-bottom: 1rem;
    }
    
    .gauge-wrapper {
      position: relative;
      height: 140px;
      margin: 1rem 0;
    }
    
    .gauge-body {
      width: 160px;
      height: 80px;
      margin: 0 auto;
      background: conic-gradient(#0077B6 0% 75%, #e0e0e0 75% 100%);
      border-top-left-radius: 80px;
      border-top-right-radius: 80px;
      position: relative;
      overflow: hidden;
    }
    
    .gauge-pointer {
      width: 2px;
      height: 70px;
      background: #2E8B57;
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%) rotate(45deg);
      transform-origin: bottom center;
      transition: transform 1.5s ease-in-out;
    }
    
    .gauge:hover .gauge-pointer {
      transform: translateX(-50%) rotate(135deg);
    }
    
    .gauge-value {
      font-weight: bold;
      font-size: 1.2rem;
      color: #0077B6;
      margin-top: 0.5rem;
    }
    
    .gauge-desc {
      font-size: 0.9rem;
      color: #666;
      margin-top: 0.5rem;
    }
    
    /* Specifications table */
    .specs-table {
      width: 100%;
      border-collapse: collapse;
      margin: 2rem 0;
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .specs-table th {
      background-color: #FF9A3D;
      color: #F8F5E6;
      padding: 1rem;
      text-align: left;
    }
    
    .specs-table td {
      padding: 1rem;
      border-bottom: 1px solid #e0e0e0;
    }
    
    .specs-table tr:hover {
      background-color: rgba(255, 154, 61, 0.1);
    }
    
    /* CTA section */
    .cta-section {
      text-align: center;
      margin-top: 3rem;
      padding: 2rem;
      background: #F8F5E6;
      border-radius: 16px;
    }
    
    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 1.5rem 0;
      flex-wrap: wrap;
    }
    
    .cta-button {
      display: inline-block;
      padding: 1rem 2rem;
      background: #FF9A3D;
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    
    .cta-button:hover {
      background: #0077B6;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .gauges-container {
        flex-direction: column;
      }
      
      .certification-bar {
        flex-direction: column;
        align-items: center;
      }
      
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
    }
  