/* Header Styles */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
  }
  
  .site-logo {
    max-width: 100px;
    flex-shrink: 0;
  }
  
  .site-logo img {
    max-width: 100%;
    height: auto;
  }
  
  /* Navigation Styles */
  .site-nav {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on medium screens */
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px; /* Slightly reduced padding */
    margin: 0 3px; /* Reduced margin */
    transition: color 0.3s ease;
    font-size: 15px; /* Slightly smaller font */
    white-space: nowrap;
  }
  
  .nav-link:hover, .nav-link.active {
    color: #2a4b8d;
  }
  
  /* Mobile Menu Toggle */
  .nav-trigger {
    display: none;
  }
  
  .menu-icon {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 5px;
  }
  
  .menu-icon svg {
    fill: #333;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .nav-links {
      justify-content: flex-end;
    }
    
    .nav-link {
      padding: 6px 10px;
      font-size: 14px;
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #ffffff;
      flex-direction: column;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .menu-icon {
      display: block;
    }
    
    .nav-trigger:checked ~ .nav-links {
      display: flex;
    }
    
    .nav-link {
      padding: 15px;
      margin: 0;
      border-bottom: 1px solid #eee;
      width: 100%;
      text-align: center;
    }
  }