
        /* =========================================
           SOFT EYE WIRE ROPE SLING PRODUCT PAGE
           Mechanically Spliced Design
           ========================================= */

        :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', 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: 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;
        }

        .spec-table {
            width: 100%;
            min-width: 800px;
            border-collapse: collapse;
            border: 1px solid var(--border-color);
        }

        .spec-table th {
            background: var(--primary-color);
            color: white;
            padding: 12px 8px;
            text-align: center;
            font-weight: 600;
            border: 1px solid var(--border-color);
            font-size: 15px;
        }

        .spec-table td {
            padding: 10px 8px;
            text-align: center;
            border: 1px solid var(--border-color);
            font-size: 14px;
        }

        .spec-table tbody tr:nth-child(even) {
            background: var(--bg-light);
        }

        .spec-table tbody tr:hover {
            background: #e8f4f8;
        }

        .highlight-header {
            background: var(--accent-color) !important;
        }

        /* 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 ul {
            margin-left: 20px;
        }

        .notes-section li {
            margin-bottom: 10px;
            line-height: 1.7;
        }

        /* 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;
            }

            .spec-table {
                font-size: 12px;
            }

            .spec-table th,
            .spec-table td {
                padding: 8px 4px;
            }
        }
    