
    /* --- Basic Styles --- */
    :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: 40px;
    }

    .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;
    }

    /* --- Warning Box --- */
    .warning-box {
        background-color: #fff3cd;
        border: 1px solid #ffeeba;
        color: #856404;
        padding: 20px;
        border-radius: 6px;
        margin-bottom: 30px;
    }

    .warning-box strong {
        color: #d35400;
    }

    /* --- 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;
    }

    /* --- Critical Alert (Red) --- */
    .critical-alert {
        background: #ffebee;
        color: #c62828;
        padding: 15px;
        border: 1px solid #ef9a9a;
        border-radius: 5px;
        text-align: center;
        font-weight: bold;
        margin-top: 20px;
    }

