Looking for a way to style the last item in my footer differently? Specifically, I want to target the item with the name "SERVICE AGREEMENT/PRIVACY POLICY". Is there a way to achieve this without using a different class, but instead utilizing the same class as the other items?
<ul class="footer_content">
<li class="footer_content_item"><a href="#">HOME</a></li>
<li class="footer_content_item"><a href="#">ABOUT US</a></li>
<li class="footer_content_item"><a href="#">CONTACT US</a></li>
<li class="footer_content_item"><a href="#">SERVICES</a></li>
<li class="footer_content_item1"><a href="#">SERVICE AGREEMENT/PRIVACY POLICY</a></li>
</ul>