.navbar {
    background-color: #ffffff !important;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    justify-content: space-between;
  }
  
  .contact-top-bar,
  .contact-top-bar-mobile {
    color: #000000;
    font-size: 0.875rem;
  }
  
  .contact-top-bar .phone,
  .contact-top-bar .email,
  .contact-top-bar-mobile .phone,
  .contact-top-bar-mobile .email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
  }
  
  .contact-top-bar a,
  .contact-top-bar-mobile a {
    color: #000000;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
  }
  
  .contact-top-bar a:hover,
  .contact-top-bar-mobile a:hover {
    text-decoration: none;
  }
  
  .contact-top-bar a::after,
  .contact-top-bar-mobile a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000000;
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.3s ease;
  }
  
  .contact-top-bar a:hover::after,
  .contact-top-bar a:focus::after,
  .contact-top-bar-mobile a:hover::after,
  .contact-top-bar-mobile a:focus::after {
    transform: translate3d(0, 0, 0);
  }
  
  .navbar-brand img {
    width: auto;
  }
  
  .navbar-nav {
    display: flex;
    gap: 1.5rem;
    margin-right: 1rem;
  }
  
  .nav-link {
    color: #000000 !important;
    font-weight: bold !important;
    transition: color 0.2s ease;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    display: inline-block;
  }
  
  .nav-link:hover {
    color: #000000 !important;
    text-decoration: none !important;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.3s ease;
  }
  
  .nav-link:hover::after,
  .nav-link:focus::after {
    transform: translate3d(0, 0, 0);
  }
  
  .btn-contact {
    font-family: 'Nunito', sans-serif;
    background-color: #CCDFFB !important;
    border-color: #CCDFFB !important;
    font-weight: bold !important;
    padding: 0.25rem 1rem !important;
    border-radius: 0.625rem !important;
    min-width: 6rem;
    margin-left: 0;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .btn-contact:hover,
  .btn-contact:focus-visible {
    background-color: #ffffff !important;
    border-color: #005FED !important;
    color: #000000 !important;
  }
  
  .btn-contact:focus {
    outline: 0.125rem solid #005FED !important;
    outline-offset: 0.125rem;
  }

  
  /* Bootstrap overrides */
  .btn-contact {
    --bs-btn-color: #000000 !important;
  }

  .nav-link {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  
  /* Mobiel vormgeving */
  .contact-top-bar-mobile {
    width: 100%;
    text-align: center;
  }
  
  .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.5) !important;
  }
  
  .navbar-toggler:focus {
    outline: 2px solid #4d90fe;
    box-shadow: none;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }
  
  @media (max-width: 991px) {
    .navbar {
      height: auto;
      padding: 0.75rem 1rem;
    }
    
    .navbar-brand {
      margin-right: auto;
    }
    
    .navbar-brand img {
      max-height: 3.5rem;
    }
    
    .navbar-collapse {
      padding: 1rem 0;
      text-align: center;
    }
    
    .navbar-nav {
      margin: 0 auto;
      gap: 0;
      flex-direction: column;
      width: 100%;
    }
    
    .nav-link {
      padding: 0.75rem 0;
      font-size: 1.1rem;
      display: block;
    }
    
    /* .btn-contact {
      margin: 1rem auto 0.5rem;
      display: block;
      width: 8rem;
    } */
  }
  
  @media (max-width: 575px) {
    .navbar-brand img {
      max-height: 3rem;
    }
  }