/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Element offset styling */
.target-element {
  position: relative;
}

.target-element::before {
  content: '';
  display: block;
  height: 100px; /* Match header height */
  margin-top: -100px; /* Negative value of header height */
  visibility: hidden;
  pointer-events: none;
}

