Your xpath is not recognized by a browser. Try with normalize-space function:
//a[normalize-space()='Cookie Policy']
OR
Change strategy and use link text (java below):
driver.findElement(By.linkText("Cookie Policy"));