
        /* Custom CSS Variables - UEESHOP Style Adaptation */
        :root {
            --primary-color: #0066cc;       /* UEESHOP Primary Color */
            --secondary-color: #28a745;     /* Secondary Color (Green) */
            --dark-color: #333333;          /* Dark Text Color */
            --light-color: #f8f9fa;         /* Light Background Color */
            --gray-color: #6c757d;          /* Gray Text Color */
            --border-color: #e5e5e5;        /* Border Color */
            --accent-color: #0052a3;        /* Accent Color */
        }

        /* Base Style Reset - UEESHOP Adaptation */
        body {
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            line-height: 1.7;
            color: var(--dark-color);
            background-color: #ffffff;
            margin: 0;
            padding: 0;
        }

        /* Container Adaptation - UEESHOP Standard */
        .container {
            max-width: 1200px;
            padding-left: 15px;
            padding-right: 15px;
            margin: 0 auto;
        }

        /* Title Style */
        .section-title {
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 15px;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 25px 0 15px;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }
            .section-subtitle {
                font-size: 1.1rem;
            }
        }

        .section-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }

        /* Card Style - UEESHOP Style */
        .feature-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 25px 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-color: var(--primary-color);
        }

        .feature-card .icon-box {
            width: 60px;
            height: 60px;
            background-color: rgba(0,102,204,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-card .icon-box i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        /* Button Style - UEESHOP Standard */
        .btn-primary-custom {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
        }

        .btn-primary-custom:hover {
            background-color: #0052a3;
            color: white;
            text-decoration: none;
        }

        /* List Style */
        .custom-list {
            list-style: none;
            padding-left: 0;
        }

        .custom-list li {
            padding-left: 25px;
            position: relative;
            margin-bottom: 10px;
        }

        .custom-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }

        /* Highlight Text */
        .highlight-text {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Responsive Spacing */
        .py-section {
            padding-top: 40px;
            padding-bottom: 40px;
        }

        @media (max-width: 768px) {
            .py-section {
                padding-top: 25px;
                padding-bottom: 25px;
            }
        }

        /* Background Section */
        .bg-light-custom {
            background-color: var(--light-color);
        }

        /* Contact Box Style */
        .contact-box {
            background-color: var(--primary-color);
            color: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
        }

        .contact-box a {
            color: white;
            text-decoration: underline;
        }

        .contact-box a:hover {
            color: #f0f0f0;
        }
        
        /* Contact info row style */
        .contact-info-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .contact-info-item i {
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        /* Capability List Style */
        .capability-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .capability-tag {
            background-color: rgba(0,102,204,0.1);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        /* Technical Parameter Table Style */
        .tech-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .tech-table th, .tech-table td {
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            text-align: left;
        }

        .tech-table th {
            background-color: rgba(0,102,204,0.05);
            color: var(--primary-color);
            font-weight: 600;
        }

        .tech-table tr:nth-child(even) {
            background-color: var(--light-color);
        }

        @media (max-width: 768px) {
            .tech-table {
                font-size: 0.85rem;
            }
            .tech-table th, .tech-table td {
                padding: 8px 10px;
            }
        }

        /* Process Table Style */
        .process-table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
        }

        .process-table th, .process-table td {
            padding: 10px 12px;
            border: 1px solid var(--border-color);
            text-align: left;
            font-size: 0.95rem;
        }

        .process-table th {
            background-color: rgba(0,102,204,0.08);
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Industry Tag Style */
        .industry-tag {
            display: inline-block;
            background-color: rgba(40, 167, 69, 0.1);
            color: var(--secondary-color);
            padding: 4px 12px;
            border-radius: 4px;
            margin: 0 5px 8px 0;
            font-size: 0.9rem;
        }

        /* Surface Finish Badge */
        .finish-badge {
            display: inline-block;
            background-color: rgba(0, 102, 204, 0.1);
            color: var(--primary-color);
            padding: 3px 10px;
            border-radius: 20px;
            margin: 0 5px 8px 0;
            font-size: 0.85rem;
        }

        /* Delivery Guarantee Styles */
        .delivery-card {
            background: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 20px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .delivery-card:hover {
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
            border-color: var(--primary-color);
        }
        
        .delivery-card h4 {
            color: var(--primary-color);
            font-size: 1.1rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .delivery-card h4 i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .delivery-card .time-highlight {
            color: var(--accent-color);
            font-weight: 600;
        }
        
        .delivery-note {
            background-color: rgba(0, 102, 204, 0.05);
            border-left: 3px solid var(--primary-color);
            padding: 10px 15px;
            margin-top: 15px;
            font-size: 0.95rem;
        }

        /* Industry Application Cards */
        .industry-card {
            background: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 20px;
            height: 100%;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .industry-card:hover {
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.1);
            border-color: var(--secondary-color);
        }
        
        .industry-card .industry-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(40, 167, 69, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .industry-card .industry-icon i {
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        
        .industry-card h4 {
            color: var(--dark-color);
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .industry-card p {
            color: var(--gray-color);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
            flex-grow: 1;
        }
        
        /* 3x3 grid for industry cards */
        .industry-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        @media (max-width: 992px) {
            .industry-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .industry-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-info-row {
                gap: 1rem;
            }
        }
    