
    /* --- H-Lift Industrial Theme Variables --- */
    :root {
        --primary-color: #003366; /* Deep Navy Blue */
        --accent-color: #f39c12;  /* Safety Orange */
        --bg-light: #f4f7f6;
        --border-color: #e0e0e0;
        --text-dark: #333333;
        --text-light: #555555;
    }

    body {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        margin: 0;
        padding: 20px;
        background-color: #ffffff;
        font-size: 16px; /* Standardized 16px font */
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- Page Header --- */
    .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;
        font-family: 'Cambria', serif;
    }

    .sub-header {
        color: var(--text-light);
        font-weight: 600;
        font-size: 18px;
    }

    /* --- Intro & Definitions --- */
    .intro-section {
        margin-bottom: 40px;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }

    .feature-list li {
        background: var(--bg-light);
        border-left: 4px solid var(--accent-color);
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 0 4px 4px 0;
    }

    /* --- Benefits Grid --- */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }

    .benefit-card {
        border: 1px solid var(--border-color);
        padding: 20px;
        border-radius: 6px;
        background: #fff;
        transition: transform 0.2s;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .benefit-title {
        font-weight: bold;
        color: var(--primary-color);
        font-size: 18px;
        margin-bottom: 10px;
        display: block;
    }

    /* --- Category Matrix Table --- */
    .matrix-container {
        margin-top: 40px;
        margin-bottom: 40px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        overflow: hidden;
    }

    .matrix-header {
        background-color: var(--primary-color);
        color: #ffffff;
        padding: 15px 20px;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        border-bottom: 3px solid var(--accent-color);
    }

    .matrix-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        background-color: #fff;
        min-width: 700px;
    }

    .table-wrapper {
        overflow-x: auto;
    }

    .matrix-table th {
        background-color: #f4f7f6;
        color: #333;
        font-weight: 600;
        text-align: center;
        padding: 15px;
        border-bottom: 2px solid #ddd;
        border-right: 1px solid #ddd;
    }

    .matrix-table td {
        padding: 20px;
        border-bottom: 1px solid #eee;
        border-right: 1px solid #eee;
        color: #555;
        vertical-align: top;
        text-align: center;
    }

    .category-icon {
        font-size: 30px;
        display: block;
        margin-bottom: 15px;
    }

    .product-link {
        display: block;
        padding: 10px 15px;
        margin: 8px auto;
        background-color: #fff;
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
        text-decoration: none;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.2s;
        width: 85%;
    }

    .product-link:hover {
        background-color: var(--primary-color);
        color: #fff;
    }

    .link-subtext {
        display: block;
        font-size: 12px;
        color: #666;
        margin-top: 2px;
        font-weight: normal;
    }
    
    .product-link:hover .link-subtext {
        color: #ccc;
    }

    /* --- Image Container --- */
    .image-container {
        text-align: center;
        margin-top: 40px;
    }
    
    .image-container img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        border: 1px solid var(--border-color);
    }

