Is there a way to apply bold styling to only the second element in CSS without altering the HTML code? I specifically want to modify just "Products" but don't have permission to edit the HTML.
`
<header>
<nav>
<a href="#">Home</a>
<a href="#">Products</a>
<a href="#">About Us</a>
<a href="#">Contacts</a>
</nav>
</header>
`
How can I make only "Products" bold?