
        /* ueeshop universal style adaptation */
        .otomo-main {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 15px;
            font-family: "Arial", sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .otomo-title {
            font-size: 24px;
            font-weight: 700;
            color: #222;
            margin-bottom: 20px;
            border-left: 4px solid #0066cc;
            padding-left: 10px;
        }
        .otomo-subtitle {
            font-size: 18px;
            font-weight: 600;
            margin: 15px 0 10px;
            color: #0066cc;
        }
        .otomo-advantage {
            background: #f5f9ff;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .otomo-advantage li {
            list-style: disc;
            margin-left: 20px;
            line-height: 1.8;
            margin-bottom: 8px;
        }
        .otomo-product-table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
            overflow-x: auto;
            display: block;
        }
        .otomo-product-table th, .otomo-product-table td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: center;
        }
        .otomo-product-table th {
            background: #0066cc;
            color: #fff;
        }
        .otomo-contact {
            background: #0066cc;
            color: #fff;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin-top: 30px;
        }
        .tech-comparison {
            margin: 20px 0;
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
        }
        
        /* Application fields with icons - 3 columns layout */
        .application-fields {
            margin: 25px 0;
        }
        .fields-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 15px;
        }
        .field-card {
            background: #f9fbff;
            border-radius: 8px;
            padding: 20px 15px;
            border: 1px solid #e8f0fe;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.3s ease;
        }
        .field-card:hover {
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
            transform: translateY(-2px);
        }
        .field-icon {
            width: 60px;
            height: 60px;
            background: #0066cc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: white;
            font-size: 24px;
        }
        .field-title {
            font-weight: 600;
            color: #222;
            margin-bottom: 8px;
            font-size: 16px;
        }
        .field-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        
        /* Responsive adaptation for ueeshop mobile */
        @media (max-width: 768px) {
            .otomo-title {
                font-size: 20px;
            }
            .otomo-subtitle {
                font-size: 16px;
            }
            .otomo-product-table th, .otomo-product-table td {
                padding: 8px 5px;
                font-size: 14px;
            }
            .fields-grid {
                grid-template-columns: 1fr; /* Single column on mobile */
                gap: 15px;
            }
            .field-card {
                padding: 15px 10px;
            }
            .field-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }
        
        /* Link style optimization */
        .product-link, .contact-link {
            color: #0066cc;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }
        .product-link:hover, .contact-link:hover {
            color: #004999;
            text-decoration: underline;
        }
        
        /* Contact link white color for dark background */
        .otomo-contact .contact-link {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .otomo-contact .contact-link:hover {
            color: #e0efff;
            text-decoration: none;
        }
    