
        #tropical-tech-specs {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            color: #333;
        }

        #tropical-tech-specs h2 {
            color: #FF9A3D;
            font-size: 28px;
            border-bottom: 2px solid #FF9A3D;
            padding-bottom: 10px;
            margin-top: 40px;
        }

        #tropical-tech-specs h3 {
            color: #0077B6;
            font-size: 22px;
            margin-top: 30px;
        }

        /* Certification Badges */
        #tropical-tech-specs .certification-badges {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 30px 0;
        }

        #tropical-tech-specs .badge {
            background-color: #F8F5E6;
            border: 2px solid #FF9A3D;
            border-radius: 15px;
            padding: 15px;
            width: 180px;
            text-align: center;
            margin: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        #tropical-tech-specs .badge:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px #FF9A3D;
        }

        #tropical-tech-specs .badge i {
            color: #FF9A3D;
            font-size: 32px;
            margin-bottom: 10px;
        }

        /* Gauges Dashboard */
        #tropical-tech-specs .gauges-dashboard {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 40px 0;
        }

        #tropical-tech-specs .gauge {
            width: 220px;
            text-align: center;
            margin: 20px;
        }

        #tropical-tech-specs .gauge-title {
            font-weight: bold;
            margin-bottom: 15px;
            color: #0077B6;
        }

        #tropical-tech-specs .gauge-container {
            position: relative;
            height: 120px;
            width: 220px;
            margin-bottom: 10px;
        }

        #tropical-tech-specs .gauge-background {
            position: absolute;
            width: 100%;
            height: 100%;
            background: conic-gradient(#0077B6 0% 70%, #2E8B57 70% 100%);
            border-radius: 110px 110px 0 0;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }

        #tropical-tech-specs .gauge-needle {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform-origin: bottom center;
            width: 4px;
            height: 90px;
            background-color: #2E8B57;
            border-radius: 4px 4px 0 0;
            transform: translateX(-50%) rotate(0deg);
            transition: transform 1.5s ease-in-out;
        }

        #tropical-tech-specs .gauge-value {
            font-size: 24px;
            font-weight: bold;
            color: #FF9A3D;
        }

        #tropical-tech-specs .gauge-label {
            font-size: 14px;
            color: #666;
        }

        /* Comparison Table */
        #tropical-tech-specs .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        #tropical-tech-specs .comparison-table th {
            background-color: #FF9A3D;
            color: #F8F5E6;
            padding: 12px;
            text-align: left;
        }

        #tropical-tech-specs .comparison-table td {
            padding: 12px;
            border-bottom: 1px solid #ddd;
        }

        #tropical-tech-specs .comparison-table tr:hover {
            background-color: rgba(255, 154, 61, 0.1);
        }

        #tropical-tech-specs .our-product {
            font-weight: bold;
            color: #2E8B57;
        }

        #tropical-tech-specs .competitor {
            color: #666;
        }

        /* Specifications List */
        #tropical-tech-specs .specs-list {
            background-color: #F8F5E6;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }

        #tropical-tech-specs .specs-list h3 {
            color: #FF9A3D;
            margin-top: 0;
        }

        #tropical-tech-specs .specs-list ul {
            padding-left: 20px;
        }

        #tropical-tech-specs .specs-list li {
            margin-bottom: 10px;
            line-height: 1.5;
        }
    