.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* 2. Logo / Title section */
  .title {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 1rem;
  }
  .title a {
    text-decoration: none;
    color: var(--bipro-dark-blue);
    white-space: nowrap;
  }
  .logo {
    width: auto;
    height: 5rem;
  }
  .logoText {
    position: relative;
    bottom: 1.33rem;
    left: -1rem;
    line-height: 0;
    font-size: 2.4rem;
    font-weight: 700;
  }
  
  /* 3. Centered headline */
  .centerTitle {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .centerTitleText {
    color: var(--title-grey);
    font-size: 1rem;
    margin: 0;
  }
  
  /* 4. Generation switch section */
  .generationSwitch {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
  }

  .generationSwitch a{
    text-decoration: none;
    color: var(--color-black);
  }

  .generationSwitch p{
    margin: 0;
  }

  .switchLogo {
    display: flex;
    align-items: center;
  }

  /* 5. Mobile styles */
  @media (max-width: 768px) {
    /* Separator adjustment: add horizontal line under logo */
    .title {
      padding-right: 0;
      padding-bottom: 1rem;
      margin-bottom: 1rem;
    }
    /* Hide generation switch on mobile */
    .generationSwitch {
      display: none;
    }
    .logo {
      height: 2.5rem;
    }
    .logoText {
      bottom: 0.665rem;
      font-size: 1.2rem;
      font-weight: 700;
      left: -0.5rem;
    }
    /* Stack header sections */
    .header {
      flex-direction: column;
      align-items: stretch;
    }
    .title,
    .centerTitle {
      width: 100%;
      justify-content: center;
      margin-bottom: 0.5rem;
    }
    .centerTitleText {
      color: var(--title-grey);
      font-size: 0.75rem;
      margin: 0;
    }
  }