/* Active page navigation highlight */
.nav-link.active {
  color: #FA8539 !important;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background-color: #FA8539;
  border-radius: 1px;
}
