If there is a structure of elements like in the image, it is possible to get out each static-property like: $$('#static-information .value').get(0) or $$('.static-property .value').get(0)
But since each static property has a unique .key in that div - is it possible to use that key to get specific elements to make the selector more generic and more resistant to errors if order changes (get rid of using get(0), get(1) etc.).
E.g. investorFullName = $$('#static-information .key="Name" .value')
Or something like td[class='key'][value='Name']