.page {
    margin: 10px auto;
    width: 80%;
}


    .jhhr-page-content {
        font-family: 'Inter', sans-serif;
        color: #4a4a4a;
        line-height: 1.7;
        font-size: 15px;
    }
    .jhhr-page-content h2 {
        color: #2c2825;
        font-size: 26px;
        border-bottom: 2px solid #b4975a;
        padding-bottom: 10px;
        margin-bottom: 20px;
        text-transform: uppercase;
        margin-top: 0;
    }
    .jhhr-page-content h3 {
        color: #2c2825;
        font-size: 22px;
        margin-bottom: 15px;
        margin-top: 30px;
    }
    .jhhr-page-content p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .jhhr-list {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 20px;
    }
    .jhhr-list-item {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
    }
    .jhhr-list-icon {
        position: absolute;
        left: 0;
        color: #b4975a;
    }
    .jhhr-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
        margin-bottom: 20px;
    }
    .jhhr-grid-item {
        background: rgba(139, 107, 67, 0.08);
        padding: 10px 15px;
        border-radius: 4px;
        border-left: 3px solid #b4975a;
        font-size: 14px;
    }
    .jhhr-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 30px;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .jhhr-table th {
        background-color: #2c2825;
        color: #ffffff;
        text-align: left;
        padding: 12px 15px;
        border: 1px solid #2c2825;
    }
    .jhhr-table td {
        padding: 12px 15px;
        border: 1px solid #e0e0e0;
        vertical-align: top;
    }
    .jhhr-table tr:nth-child(even) {
        background-color: #f9f6f0;
    }
    .jhhr-highlight-box {
        background: rgba(139, 107, 67, 0.05);
        border-left: 4px solid #b4975a;
        padding: 25px 30px;
        border-radius: 0 8px 8px 0;
        margin-bottom: 30px;
    }

    /* 📱 Mobile Responsive Adjustments */
    @media (max-width: 768px) {
        .jhhr-page-content h2 { font-size: 22px; }
        .jhhr-page-content h3 { font-size: 19px; }
        .jhhr-page-content { font-size: 14.5px; }
        .jhhr-grid { grid-template-columns: 1fr 1fr; } 
        .jhhr-highlight-box { padding: 20px; }
    }
    @media (max-width: 480px) {
        .jhhr-grid { grid-template-columns: 1fr; }
        .jhhr-page-content p { text-align: left; }
    }
