Hyperlink color different on page (vs post)

How do I change the hyperlink color on my pages. Here is an example of a page from my site:

https://mycuriositylab.com/my-curiosity-lab/

The hyperlinks on this page are black and only slightly darker than the normal text, i.e. you can hardly tell they are links. Contrast that to one of my pages:

https://mycuriositylab.com/great-debate-go-part-time-now-retire-early/

In which the links are a bright blue color.

Is there a setting or custom CSS that will make my page hyperlinks blue like this? Thanks

Hey there,
I hope you’re doing well today

Kindly add and save the following code to Appearance > Customize > Additional CSS:
You can change the color to one of your liking using text or hex value.

/*change hyperlink color on pages*/
.page a {
  color:red; 
}

Best Regards,
Support

Thanks, it seemed to do the trick!