/**
 * Header Fix - Proper spacing for fixed header
 */

/* Reserve space for the fixed header to prevent layout shift */
#header-placeholder {
  height: 80px; /* Exact header height */
  background-color: #fff;
}

/* Ensure smooth scrolling */
body {
  scroll-behavior: smooth;
}

/* Reduce excessive spacing in page titles */
.page-title {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/* Main sections spacing */
.section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
