/* Header styles for consistent UI across pages */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.site-header .container {
  max-width: 1200px;
}


/* Content container with max-width 1200px */
.content-container {
  max-width: 1200px !important;
}

.site-header .nav-links {
  display: flex;
 /* Default display for desktop */
  flex-wrap: wrap;
  align-items: center;
}

.site-header .nav-links.hidden {
  display: none;
}

/* Mobile menu styles */
.mobile-menu-button {
  display: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .site-header .nav-links:not(.active) {
    display: none;
  }
  
  .site-header .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    align-items: flex-start;
    width: 100%;
  }
  
  .site-header .nav-links.active a,
  .site-header .nav-links.active button {
    margin: 0.5rem 0;
    width: 100%;
    text-align: left;
  }
  
  .mobile-menu-button {
    display: block;
  }
}