
        /* =========================================
           WIRE ROPE SLINGS - EN 13414 PRODUCT PAGE
           VERSION: 2.1 - With Correct Diagrams
           ========================================= */

        :root {
            --primary-color: #003366;
            --accent-color: #e67e23;
            --success-color: #27ae60;
            --bg-light: #f8f9fa;
            --border-color: #7e8c8d;
            --text-dark: #212529;
            --text-light: #6c757d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cambria', 'Segoe UI', Arial, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #fff;
            font-size: 16px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Section */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #004080 100%);
            color: white;
            padding: 50px 40px;
            margin-bottom: 40px;
            border-radius: 10px;
        }

        .page-header h1 {
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .page-header .subtitle {
            font-size: 1.2em;
            opacity: 0.95;
        }

        /* Features Section */
        .features-section {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 1.8em;
            color: var(--primary-color);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--accent-color);
            font-weight: 700;
        }

        .features-list {
            list-style: none;
            padding: 0;
        }

        .features-list li {
            padding: 15px 20px;
            margin-bottom: 15px;
            background: var(--bg-light);
            border-left: 5px solid var(--accent-color);
            border-radius: 5px;
            line-height: 1.8;
        }

        .features-list li strong {
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Q&A Section */
        .qa-section {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 35px;
            border-radius: 10px;
            margin-bottom: 40px;
            border: 2px solid #90caf9;
        }

        .qa-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .qa-item:last-child {
            margin-bottom: 0;
        }

        .qa-question {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.05em;
            margin-bottom: 8px;
        }

        .qa-answer {
            color: var(--text-dark);
            line-height: 1.7;
        }

        /* Image Section */
        .product-image {
            text-align: center;
            margin: 40px 0;
        }

        .product-image img {
            max-width: 800px;
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        /* Table Section */
        .table-section {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }

        .table-wrapper {
            overflow-x: auto;
            margin-top: 30px;
            border-radius: 8px;
        }

        .load-table {
            width: 100%;
            min-width: 900px;
            border-collapse: collapse;
            border: 1px solid var(--border-color);
        }

        .load-table th {
            background: var(--primary-color);
            color: white;
            padding: 12px;
            text-align: center;
            font-weight: 600;
            border: 1px solid var(--border-color);
        }

        .load-table td {
            padding: 10px;
            text-align: center;
            border: 1px solid var(--border-color);
            font-size: 15px;
        }

        .load-table tr:nth-child(even) {
            background: var(--bg-light);
        }

        .load-table tr:hover {
            background: #e8f4f8;
        }

        .table-header-main {
            background: var(--accent-color) !important;
            font-size: 1.1em;
        }

        /* Load Factor Table Specific Styles */
        .factor-table {
            min-width: 1100px;
        }

        .factor-table .diagram-cell {
            padding: 15px 5px;
            vertical-align: middle;
        }

        .factor-table .diagram-cell img {
            max-width: 70px;
            max-height: 60px;
            height: auto;
            width: auto;
            display: inline-block;
        }

        .factor-highlight {
            background: var(--accent-color) !important;
            color: white !important;
            font-weight: 700;
        }

        /* Notes Section */
        .notes-section {
            background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
            border: 3px solid var(--accent-color);
            border-radius: 10px;
            padding: 30px;
            margin-top: 30px;
        }

        .notes-section h3 {
            color: var(--primary-color);
            font-size: 1.3em;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .notes-section p {
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .notes-section p:last-child {
            margin-bottom: 0;
        }

        .notes-section strong {
            color: var(--accent-color);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            .page-header {
                padding: 35px 25px;
            }

            .page-header h1 {
                font-size: 2em;
            }

            .features-section,
            .table-section {
                padding: 25px 20px;
            }

            .section-title {
                font-size: 1.5em;
            }

            .load-table {
                font-size: 13px;
            }

            .load-table th,
            .load-table td {
                padding: 8px 5px;
            }

            .factor-table .diagram-cell img {
                max-width: 50px;
                max-height: 45px;
            }
        }
    