Hello There,
From your child theme style.css file, look for the following:
.page-id-2228 p, label {
color: black!important;
}
Update to this:
.page-id-2228 p, .page-id-2228 label {
color: black!important;
}
And this:
.page-id-2226 p, label {
color: black!important;
}
Update to this:
.page-id-2226 p, .page-id-2226 label {
color: black!important;
}
And this:
.page-id-2227 p, label {
color: black!important;
}
To this:
.page-id-2227 p, .page-id-2227 label {
color: black!important;
}
Those custom CSS declares all your labels to be black. The important overrides all other CSS styles.
Hope this helps.