
    /* --- H-LIFT INDUSTRIAL THEME VARIABLES --- */
    :root {
        --primary-color: #003366; /* Deep Navy Blue */
        --accent-color: #e67e23;  /* Safety Orange */
        --bg-light: #f4f7f6;
        --border-color: #e0e0e0;
        --text-dark: #333333;
        --text-light: #555555;
        --warning-bg: #ffebee;
        --warning-border: #ef9a9a;
        --warning-text: #c62828;
        --info-bg: #e3f2fd;
        --info-border: #2196f3;
        --info-text: #0d47a1;
        --success-bg: #e8f5e9;
        --success-border: #64b5f6;
    }

    /* Global Styles */
    * { box-sizing: border-box; }
    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;
    }
    .container { max-width: 1200px; margin: 0 auto; }

    /* Header Section */
    .page-header {
        border-bottom: 4px solid var(--primary-color);
        padding-bottom: 20px;
        margin-bottom: 30px;
        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(--accent-color);
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 15px;
    }
    .tags-wrapper {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .tag {
        background: var(--bg-light);
        color: var(--primary-color);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 700;
        border: 1px solid var(--border-color);
    }
    .tag-highlight {
        background: var(--primary-color);
        color: #ffffff !important; /* Fixed: explicitly set text color to white and added !important */
        border-color: var(--primary-color);
    }

    /* Content Blocks */
    .intro-box {
        background-color: var(--bg-light);
        padding: 25px;
        border-left: 5px solid var(--accent-color);
        margin-bottom: 30px;
        border-radius: 4px;
        font-size: 16px;
    }

    /* Feature Grid */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }
    .feature-card {
        border: 1px solid var(--border-color);
        border-radius: 6px;
        padding: 20px;
        background: #fff;
        transition: transform 0.2s;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .feature-title {
        font-weight: bold;
        color: var(--primary-color);
        font-size: 18px;
        margin-bottom: 10px;
        display: block;
        border-bottom: 2px solid #eee;
        padding-bottom: 5px;
    }

    /* Lists */
    .styled-list {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
    }
    .styled-list > li {
        margin-bottom: 12px;
        padding-left: 28px;
        position: relative;
    }
    .styled-list > li::before {
        content: "■";
        color: var(--accent-color);
        font-size: 14px;
        position: absolute;
        left: 0;
        top: 2px;
    }

    /* --- FIXED TABLE STYLES --- */
    .section-title {
        font-size: 24px;
        color: var(--primary-color);
        margin-top: 40px;
        margin-bottom: 20px;
        border-left: 5px solid var(--accent-color);
        padding-left: 15px;
    }

    .table-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 40px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        table-layout: fixed; 
        background: #fff;
    }

    /* Header Cells */
    th {
        background-color: var(--primary-color);
        color: #fff;
        padding: 12px 10px; 
        border: 1px solid #ddd;
        font-size: 15px; 
        font-weight: 600;
        /* MANDATORY CENTERING */
        text-align: center !important;
        vertical-align: middle !important;
    }

    /* Data Cells */
    td {
        padding: 10px 10px;
        border: 1px solid #ddd;
        font-size: 15px;
        color: #333;
        /* MANDATORY CENTERING */
        text-align: center !important;
        vertical-align: middle !important;
    }

    td:first-child {
        font-weight: 700;
        color: var(--primary-color);
        background-color: var(--bg-light);
        width: 30%;
    }

    tr:hover td { background-color: #f0f4f8; }
    
    /* Mobile Optimization for Table */
    @media (max-width: 768px) {
        th, td { font-size: 13px; padding: 8px 4px; }
    }

    /* Warning Box */
    .warning-box {
        background-color: var(--warning-bg);
        border: 1px solid var(--warning-border);
        border-left: 6px solid var(--warning-text);
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 4px;
    }
    .warning-box h3 {
        color: var(--warning-text);
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 20px;
    }
    
    /* Info Box */
    .info-box {
        background-color: var(--info-bg);
        border: 1px solid var(--info-border);
        border-left: 6px solid var(--info-text);
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 4px;
    }
    .info-box h3 {
        color: var(--info-text);
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 20px;
    }
