
        /* =========================================
           MALLEABLE WIRE ROPE CLIP TYPE A
           Light Duty / Cast Iron Construction
           Unified Font System: Segoe UI / 16px
           ========================================= */

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #34495e;
            --light-duty-color: #95a5a6;
            --warning-color: #e74c3c;
            --success-color: #27ae60;
            --info-color: #f39c12;
            --bg-light: #ecf0f1;
            --border-color: #bdc3c7;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: #f8f9fa;
            font-size: 16px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Section */
        .page-header {
            background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
            color: white;
            padding: 45px 40px;
            margin-bottom: 35px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .page-header h1 {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 2.2em;
            font-weight: 600;
            margin-bottom: 12px;
            color: white;
        }

        .page-header .subtitle {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 1.1em;
            opacity: 0.95;
            margin-bottom: 20px;
            color: white;
        }

        .badge-container {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .standard-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 10px 20px;
            border-radius: 25px;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            font-weight: 600;
            backdrop-filter: blur(10px);
            color: white;
        }

        .warning-badge {
            display: inline-block;
            background: rgba(231, 76, 60, 0.2);
            border: 2px solid #e74c3c;
            padding: 10px 20px;
            border-radius: 25px;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: white;
            backdrop-filter: blur(10px);
        }

        /* Content Sections */
        .content-section {
            background: white;
            padding: 35px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }

        .section-title {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 1.6em;
            color: var(--secondary-color);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--light-duty-color);
            font-weight: 600;
        }

        /* Features List */
        .features-list {
            list-style: none;
            padding: 0;
        }

        .features-list li {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            color: var(--text-dark);
            padding: 14px 18px;
            margin-bottom: 12px;
            background: var(--bg-light);
            border-left: 4px solid var(--light-duty-color);
            border-radius: 4px;
            line-height: 1.8;
        }

        .features-list li strong {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: var(--light-duty-color);
            font-weight: 600;
        }

        /* Warning Box */
        .warning-box {
            background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
            border: 3px solid var(--warning-color);
            border-radius: 8px;
            padding: 20px 25px;
            margin: 25px 0;
        }

        .warning-box strong {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            color: var(--warning-color);
            font-weight: 600;
            display: block;
            margin-bottom: 12px;
        }

        .warning-box p {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            color: var(--text-dark);
            line-height: 1.7;
            margin: 0;
        }

        /* Info Box */
        .info-box {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border: 3px solid var(--success-color);
            border-radius: 8px;
            padding: 20px 25px;
            margin: 25px 0;
        }

        .info-box strong {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            color: var(--success-color);
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }

        .info-box p {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            color: var(--text-dark);
            line-height: 1.7;
            margin: 0;
        }

        /* Specifications Grid */
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .spec-card {
            background: var(--bg-light);
            border-left: 4px solid var(--light-duty-color);
            padding: 18px 20px;
            border-radius: 6px;
        }

        .spec-card .label {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 6px;
        }

        .spec-card .value {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            color: var(--text-dark);
        }

        /* Q&A Section */
        .qa-section {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 30px;
            border-left: 5px solid var(--info-color);
        }

        .qa-item {
            background: white;
            padding: 18px 22px;
            border-radius: 6px;
            margin-bottom: 15px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.06);
        }

        .qa-item:last-child {
            margin-bottom: 0;
        }

        .qa-question {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .qa-answer {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            color: var(--text-dark);
            line-height: 1.8;
        }

        .qa-answer strong {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: var(--text-dark);
            font-weight: 600;
        }

        /* Product Image */
        .product-image {
            text-align: center;
            margin: 30px 0;
        }

        .product-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        /* Table Section */
        .table-section {
            background: white;
            padding: 35px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }

        .table-note {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .table-wrapper {
            overflow-x: auto;
            margin-top: 20px;
            border-radius: 6px;
        }

        .spec-table {
            width: 100%;
            border-collapse: collapse;
            border: 2px solid var(--light-duty-color);
            min-width: 1000px;
        }

        .spec-table th {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            background: var(--light-duty-color);
            color: white;
            padding: 12px 8px;
            text-align: center;
            font-weight: 600;
            border: 1px solid var(--light-duty-color);
        }

        .spec-table td {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            color: var(--text-dark);
            padding: 10px 8px;
            text-align: center;
            border: 1px solid var(--border-color);
        }

        .spec-table tbody tr:nth-child(even) {
            background: #f8f9fa;
        }

        .spec-table tbody tr:hover {
            background: #ecf0f1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                font-size: 16px;
            }

            .container {
                padding: 15px;
            }

            .page-header {
                padding: 30px 20px;
            }

            .page-header h1 {
                font-size: 1.6em;
            }

            .page-header .subtitle {
                font-size: 1em;
            }

            .standard-badge,
            .warning-badge {
                font-size: 14px;
                padding: 8px 16px;
            }

            .badge-container {
                gap: 8px;
            }

            .content-section,
            .table-section,
            .qa-section {
                padding: 20px 18px;
            }

            .section-title {
                font-size: 1.3em;
            }

            .features-list li {
                font-size: 16px;
                padding: 12px 15px;
            }

            .specs-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .spec-card {
                padding: 15px 18px;
            }

            .spec-card .label,
            .spec-card .value {
                font-size: 16px;
            }

            .qa-item {
                padding: 15px 18px;
            }

            .qa-question,
            .qa-answer {
                font-size: 16px;
            }

            .spec-table th,
            .spec-table td {
                font-size: 13px;
                padding: 8px 4px;
            }

            .warning-box,
            .info-box {
                padding: 18px 20px;
            }

            .warning-box strong,
            .warning-box p,
            .info-box strong,
            .info-box p {
                font-size: 16px;
            }

            .table-note {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 1.4em;
            }

            .section-title {
                font-size: 1.2em;
            }

            .spec-table {
                min-width: 800px;
            }

            .spec-table th,
            .spec-table td {
                font-size: 12px;
                padding: 6px 3px;
            }
        }
    