
    /* --- Basic Styles & Theme Variables --- */
    :root {
        /* H-Lift Industrial Theme */
        --primary-color: #003366; /* Navy Blue */
        --accent-color: #e67e23; /* Safety Orange */
        --success-color: #27ae60; /* Safe Green */
        --danger-color: #c0392b; /* Alert Red */
        --bg-light: #f4f7f6;
        --border-color: #e0e0e0;
        --text-dark: #333;
        --text-light: #555;
    }

    body {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        margin: 0;
        padding: 20px;
        background-color: #fff;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- Header Section --- */
    .page-header {
        border-bottom: 4px solid var(--primary-color);
        padding-bottom: 20px;
        margin-bottom: 40px;
        text-align: center;
    }

    .page-header h1 {
        color: var(--primary-color);
        font-size: 32px;
        margin: 0 0 10px 0;
    }

    /* --- Product Showcase Grid --- */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 50px;
    }

    .product-item {
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: #fff;
    }

    .product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-color: var(--accent-color);
    }

    .product-item a {
        display: block;
        padding: 20px;
        text-decoration: none;
        color: inherit;
    }

    .product-item img {
        max-width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

    .product-item h3 {
        color: var(--primary-color);
        font-size: 18px;
        margin: 0;
    }

    /* --- Content Layout --- */
    .content-section {
        margin-bottom: 50px; /* Increased spacing */
    }

    .content-section h2 {
        color: var(--primary-color);
        font-size: 24px;
        border-left: 5px solid var(--accent-color);
        padding-left: 15px;
        margin-bottom: 20px;
    }

    .content-section p {
        margin-bottom: 15px;
        font-size: 16px;
    }

    /* --- Selection Table Styles (New) --- */
    .table-container {
        overflow-x: auto; /* Ensures responsiveness on mobile */
        margin-top: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        border-radius: 8px;
        border: 1px solid var(--border-color);
    }

    .selection-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        background-color: #fff;
        min-width: 800px; /* Prevents squishing on small screens */
    }

    .selection-table thead {
        background-color: var(--primary-color);
        color: #ffffff;
    }

    .selection-table th {
        padding: 15px;
        text-align: left;
        font-weight: 600;
        border-bottom: 3px solid var(--accent-color);
    }

    .selection-table td {
        padding: 12px 15px;
        border-bottom: 1px solid var(--border-color);
        color: #333;
        vertical-align: top;
    }

    .selection-table tr:last-child td {
        border-bottom: none;
    }

    .selection-table tr:nth-child(even) {
        background-color: #f8f9fa; /* Light Zebra Striping */
    }

    .selection-table tr:hover {
        background-color: #f1f4f8; /* Hover Effect */
    }

    .selection-table a {
        color: var(--primary-color);
        font-weight: bold;
        text-decoration: none;
        transition: color 0.2s;
    }

    .selection-table a:hover {
        color: var(--accent-color);
        text-decoration: underline;
    }

    .highlight-tag {
        display: inline-block;
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: bold;
    }
    
    .tag-push { background-color: #e3f2fd; color: #0d47a1; border: 1px solid #bbdefb; }
    .tag-geared { background-color: #fff3e0; color: #e65100; border: 1px solid #ffe0b2; }
    .tag-clamp { background-color: #e8f5e9; color: #1b5e20; border: 1px solid #c8e6c9; }

    /* --- Guide Box (Small comparison) --- */
    .guide-box {
        background: var(--bg-light);
        padding: 25px;
        border-radius: 8px;
        border: 1px solid var(--border-color);
    }

    .guide-steps {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .guide-steps li {
        margin-bottom: 15px;
        padding-left: 20px;
        position: relative;
    }

    .guide-steps li::before {
        content: "➤";
        color: var(--accent-color);
        position: absolute;
        left: 0;
        font-size: 14px;
        top: 2px;
    }

    /* --- Safety Do's and Don'ts --- */
    .safety-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    @media (max-width: 768px) {
        .safety-grid {
            grid-template-columns: 1fr;
        }
    }

    .safety-card {
        padding: 25px;
        border-radius: 8px;
        border: 1px solid var(--border-color);
    }

    .safety-card.always {
        background-color: #f0fdf4; /* Light Green */
        border-top: 5px solid var(--success-color);
    }

    .safety-card.never {
        background-color: #fef2f2; /* Light Red */
        border-top: 5px solid var(--danger-color);
    }

    .safety-card h3 {
        margin-top: 0;
        font-size: 20px;
        text-transform: uppercase;
    }

    .safety-card.always h3 { color: var(--success-color); }
    .safety-card.never h3 { color: var(--danger-color); }

    .safety-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .safety-list li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
    }

    .safety-card.always .safety-list li::before {
        content: "✔";
        color: var(--success-color);
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    .safety-card.never .safety-list li::before {
        content: "✖";
        color: var(--danger-color);
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    /* --- Info Blocks --- */
    .info-block {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
     
    .info-block:last-child {
        border-bottom: none;
    }

    .info-block h4 {
        color: var(--primary-color);
        margin-top: 0;
        font-size: 18px;
    }

