/* Fix for anchor links with fixed header */
:target::before {
  content: "";
  display: block;
  height: 80px; /* Adjust based on your header height */
  margin-top: -80px;
}