
    /* --- H-LIFT LASHING 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;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- Page Header & Badges --- */
    .product-header {
        border-bottom: 4px solid var(--primary-color);
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    
    .product-header h1 {
        color: var(--primary-color);
        font-size: 32px;
        margin: 0 0 15px 0;
        font-family: 'Cambria', serif;
    }

    .intro-text {
        font-size: 16px;
        color: var(--text-light);
        max-width: 900px;
    }

    .badge-row { 
        display: flex; 
        gap: 10px; 
        margin-bottom: 20px; 
        flex-wrap: wrap; 
    }
    
    .badge { 
        background: var(--primary-color); 
        color: #fff; 
        padding: 6px 12px; 
        font-size: 14px; 
        font-weight: 600; 
        border-radius: 4px; 
    }
    
    .badge.orange { 
        background: var(--accent-color); 
        color: #fff; /* White text looks better on this orange */
    }

    /* --- Use Case Grid (New) --- */
    .use-cases-grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
        gap: 20px; 
        margin: 30px 0; 
    }
    
    .use-case-card { 
        background: var(--bg-light); 
        border: 1px solid var(--border-color); 
        padding: 20px; 
        border-radius: 6px; 
        text-align: center; 
        border-top: 3px solid var(--primary-color); 
        transition: transform 0.2s; 
    }
    
    .use-case-card:hover { 
        transform: translateY(-3px); 
        box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
    }
    
    .use-case-title { 
        font-weight: 700; 
        font-size: 18px; 
        display: block; 
        margin-bottom: 8px; 
        color: var(--primary-color); 
    }

    /* --- Features Section --- */
    .features-section { 
        margin-bottom: 50px; 
    }
    
    .features-section h2 { 
        color: var(--primary-color);
        font-size: 24px; 
        border-left: 5px solid var(--accent-color); 
        padding-left: 15px; 
        margin-bottom: 20px; 
        margin-top: 0;
    }
    
    .features-list { 
        list-style: none; 
        padding: 0; 
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 15px; 
    }

    @media (min-width: 768px) {
        .features-list { grid-template-columns: 1fr 1fr; }
    }

    .features-list li { 
        background: #fff; 
        border: 1px solid var(--border-color); 
        padding: 15px; 
        border-radius: 4px; 
        box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    }
    
    .features-list strong { 
        color: var(--primary-color); 
        display: block; 
        margin-bottom: 8px; 
        font-size: 17px; 
    }

    /* --- Tables --- */
    .table-wrapper { 
        width: 100%; 
        overflow-x: auto; 
        border: 1px solid var(--border-color); 
        border-radius: 6px; 
        margin-bottom: 40px; 
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    
    table { 
        width: 100%; 
        border-collapse: collapse; 
        min-width: 600px; 
        background: #fff; 
    }
    
    th { 
        background-color: var(--primary-color); 
        color: #fff; 
        padding: 12px 15px; 
        text-align: center; 
        font-weight: 600; 
        white-space: nowrap; 
    }
    
    td { 
        padding: 12px 15px; 
        border-bottom: 1px solid #eee; 
        text-align: center; 
        color: #444; 
        vertical-align: middle; 
    }
    
    tr:nth-child(even) { background-color: #f9fbfd; }
    
    .fitting-img { 
        width: 60px; 
        height: auto; 
        border: 1px solid #ddd; 
        padding: 4px; 
        border-radius: 4px; 
        background: #fff; 
    }

    /* --- Related Products Section --- */
    .related-section {
        margin-top: 50px;
        border-top: 2px solid #eee;
        padding-top: 30px;
        background-color: #fff; /* Reset to white for cleaner look */
    }

    .related-title {
        color: var(--primary-color);
        font-size: 22px;
        margin-bottom: 30px;
        text-align: center;
        font-weight: 700;
        position: relative;
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .related-item {
        border: 1px solid var(--border-color);
        border-radius: 6px;
        padding: 15px;
        text-align: center;
        transition: transform 0.2s;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        color: var(--text-dark);
        background: #fff;
    }

    .related-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-color: var(--accent-color);
    }

    .img-container {
        height: 160px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }

    .related-item img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }

    .related-name {
        font-size: 15px;
        font-weight: 700;
        color: var(--primary-color);
        line-height: 1.4;
    }

    .related-sub {
        display: block;
        font-weight: normal;
        font-size: 13px;
        color: #777;
        margin-top: 4px;
    }

    /* --- Mobile Adjustments --- */
    @media (max-width: 768px) {
        .product-header h1 { font-size: 26px; }
        .features-list { grid-template-columns: 1fr; }
        .use-cases-grid { grid-template-columns: 1fr; }
    }
