Hi Nathan,
Every page in WordPress will have a unique CSS class corresponding to it’s post ID. To figure out the ID for your page, edit the page, and look at the URL in your browser.
At the end of the URL, you’ll see something like ?post=1234&action=edit. The number after post= is what you need, in this example 1234.
Now that you know your page’s ID, you can use Custom CSS to change the link hover color on that page. Navigate to Customize > Advanced > Custom JS & CSS and use code similar to this in your Custom Theme CSS:
.page-id-1234 a:hover { color: orange; }
Replace “1234” with the page ID you found before, and replace “orange” with the color or hex value of your choice.