.header-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 4rem;
  }
  
  @media (min-width: 768px) {
    .header-container {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  }
  
  .logo {
    height: 60px;
  }
  
  .inner-container {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #0E3C97;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1),
                0 1px 2px rgba(0, 0, 0, 0.06);
  }

  .inner-container-half {
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: right;
    background-color: #0E3C97;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1),
                0 1px 2px rgba(0, 0, 0, 0.06);
  }

  @media (min-width: 768px) {
    .inner-container {
      flex-direction: row;
    }
  }
  
  .mobile-button {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    color: white;
    cursor: pointer;
  }
  
  @media (min-width: 768px) {
    .mobile-button {
      display: none;
    }
  }
  
  .menu-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  #navLinks {
    display: none;
  }
  
  @media (min-width: 768px) {
    #navLinks {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
  }
  
  .custom-link {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  @media (min-width: 768px) {
    .custom-link {
      font-size: 1rem;
    }
  }
  
  .custom-link:hover {
    color: #bfdbfe;
  }
  
  .active-link {
    text-decoration: underline;
  }
  
  .search-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 1rem;
  }
  
  @media (min-width: 768px) {
    .search-icon {
      margin-top: 0;
    }
  }
  