
    /* --- 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;
        --highlight-bg: #e3f2fd;
    }

    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 Section --- */
    .intro-box {
        background-color: var(--bg-light);
        padding: 20px;
        border-left: 5px solid var(--accent-color);
        margin-bottom: 40px;
        border-radius: 4px;
    }

    /* --- Features & Applications Grid --- */
    .grid-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .section-title {
        color: var(--primary-color);
        font-size: 24px;
        border-bottom: 2px solid #eee;
        padding-bottom: 10px;
        margin-bottom: 20px;
        font-family: 'Cambria', serif;
        font-weight: bold;
    }

    .feature-list {
        list-style: none;
        padding: 0;
    }

    .feature-list li {
        background: #fff;
        border: 1px solid var(--border-color);
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 4px;
        border-left: 4px solid var(--primary-color);
    }

    /* --- Comparison Table --- */
    .table-wrapper {
        overflow-x: auto;
        margin-bottom: 10px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }

    .compare-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        font-size: 16px;
    }

    .compare-table th {
        background-color: var(--primary-color);
        color: #fff;
        padding: 12px;
        text-align: center;
        border: 1px solid #ddd;
    }

    .compare-table td {
        padding: 12px;
        text-align: center;
        border: 1px solid #ddd;
        color: var(--text-dark);
    }

    .compare-table tr:nth-child(even) {
        background-color: #f9fbfd;
    }

    .highlight-g100 {
        color: #003366;
        font-weight: bold;
        background-color: var(--highlight-bg);
    }

    .table-note {
        font-size: 14px;
        color: var(--text-light);
        margin-bottom: 40px;
        font-style: italic;
    }

    /* --- Safety Section --- */
    .safety-box {
        background-color: #fff8e1; /* Light yellow warning */
        border: 1px solid #ffe0b2;
        padding: 20px;
        border-radius: 6px;
        margin-bottom: 40px;
    }

    .safety-title {
        color: #e67e23;
        font-weight: bold;
        font-size: 20px;
        margin-bottom: 10px;
        display: block;
    }

    /* --- Image Container --- */
    .image-container {
        text-align: center;
        margin-top: 40px;
        padding: 10px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
    }

    .image-container img {
        max-width: 100%;
        height: auto;
    }

