.hr-services-section {
    max-width: 600px;
    margin: 20px 0;
}

.hr-services-section h3 {
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.service-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.service-item:hover {
    background: #f0f0f0;
}

.service-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.service-item input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.service-item input[type="checkbox"]:disabled {
    opacity: 0.5;
}

#services-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}