* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;  /* Dit voorkomt horizontale scroll */
    font-family: 'Helvetica', sans-serif;
    background-color: #ffffff;
    color: white;
  }




  header {
    background: rgba(0, 0, 0, 0.8); /* 👈 half transparant zwart */
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    backdrop-filter: blur(5px); /* optioneel: mooie blur onder de header */
  }
  .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    padding: 0 1rem;
    position: relative;
  }
  
  .logo-large {
    height: 4.8rem;
    object-fit: contain;
    margin-top: 20px;
  }
  
  /* Standaard alleen grote logo zichtbaar */
  .logo-small {
    display: none;
  }
  .logo-large {
    display: block;
  }
  
  /* Op kleinere schermen (bijv. mobiel): alleen kleine logo zichtbaar */
  @media (max-width: 768px) {
    .logo-small {
      display: block;
      scale: 0.8;
    }
    .logo-large {
      display: none;
    }
  }

  
  .hamburger {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  
  nav {
    display: flex;
    gap: 3rem;
  }
  
  nav a {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-right: 10px;
  }
  
  nav a:hover {
    color: #a7a7a7;
  }
  
  /* MOBILE STYLES */
  @media screen and (max-width: 600px) {
    .hamburger {
      display: block;
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
    }
  
    nav {
      display: flex;
      flex-direction: column;
      background: rgba(0, 0, 0, 0.8);
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 1.5rem 2rem;
      text-align: right;
    
      /* Animatie basis */
      opacity: 0;
      transform: translateY(-20px);
      pointer-events: none;
      transition: all 0.3s ease;
      z-index: 10;
    }
    
    nav.show {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    
  }


















  .faq-blok {
    max-width: 700px;
    margin: 3rem auto;
    padding: 0 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    color: #1E3B58;
  }
  
  .faq-blok h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  
  .faq-item {
    border-bottom: 1px solid #ccc;
  }
  
  .faq-vraag {
    display: flex;
    justify-content: space-between;
    align-items: left;
    width: 100%;
    font-weight: bold;
    border: none;
    background: none;
    padding: 1rem 0;
    font-size: 1rem;
    color: #1e3b58;
    cursor: pointer;
  }
  
  .faq-vraag span {
    word-break: break-word;
    text-align: left;
  }
  
  .arrow {
    margin-left: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  
  .faq-item.open .arrow {
    transform: rotate(180deg);
  }
  
  .faq-antwoord {
    display: none;
    padding-bottom: 1rem;
    font-size: 0.95rem;
    color: #333;
  }
  
  .faq-item.open .faq-antwoord {
    display: block;
  }
  
  













  



/* Footer Styles */
.footer {
    background-color: #1e3b58;
    color: white;
    padding: 3rem 2rem;
    font-family: Arial, sans-serif;
    position: relative; /* maakt het mogelijk om de footer op een vaste locatie te houden */
    bottom: 0;
    width: 100%;
    margin-top: 200px; /* Voorkomt dat de footer zich uitrekt of verschuift */
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    width: 100%;
  }
  
  
  .footer-middle,
  .footer-right {
    width: 18%;
  
  }
  .footer-left {
    width: 25%;
    margin-left: 50px;
  }
  
  .footer-left {
    text-align: left;
  }
  
  .footer-left .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  .footer-logo p{
    font-size: 1.5rem;
  }
  .footer-left .footer-logo img {
    width: 120px; /* Adjust the logo size */
    margin: 1rem auto;
  }
  
  .footer-left hr.footer-line {
    border: 0;
    border-top: 1px solid #ffffff;
    margin: 1rem 0;
  }
  
  .footer-left .footer-menu h3,
  .footer-middle h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: bold;
  }
  
  .footer-menu ul,
  .footer-business-info ul,
  .footer-contact ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-menu li,
  .footer-business-info li,
  .footer-contact li {
    margin-bottom: 0.8rem;
  }
  
  .footer-line-1 {
    margin-bottom: 15px;
    margin-top: 20px;
  }
  
  
  .footer-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .footer-menu a:hover {
    text-decoration: underline;
  }
  
  .footer-contact i {
    margin-right: 0.5rem;
  }
  
  .footer-cta h3{
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.4rem;
    font-family: 'Source Sans Pro', sans-serif;
  }
  
  .btn-cta {
    background-color: #00F6FF;
    color: rgb(0, 0, 0);
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
  }
  
  .btn-cta:hover{
    background-color: #00c9ff;
  }
  
  .footer-social ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .footer-social a {
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
  }
  
  .footer-social a:hover {
    color: #00c9ff;
  }
  
  .footer-bottom {
    position: relative;
    bottom: 1; /* Zet de footer helemaal aan de onderkant */
    max-width: 100%; /* Zorg ervoor dat het de volledige breedte van de pagina gebruikt */
    text-align: center;
    font-size: 0.8rem;
    padding: 1rem 0;
  }
  
  .footer-bottom a {
    color: #00c9ff;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  .footer-cta-1 {
    margin-top: 1.2rem;
  }
  .footer-cta-1 h3{
    font-family: 'Source Sans Pro', sans-serif;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.4rem;
  }
  
  /* Adjustments for Small Screen Sizes */
  @media (max-width: 1250px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      padding: 2rem 1rem;
      text-align: center;
    }
  
    .footer-left,
    .footer-middle,
    .footer-right {
      width: 100%;
      max-width: 600px;
      margin: 0 auto 2rem auto;
    }
  
    .footer-left {
      margin-left: 0; /* 🔧 Fix de verschuiving */
      text-align: center;
    }
  
    .footer-left .footer-logo {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      text-align: center;
    }
  
    .footer-left .footer-logo img {
      margin: 0 auto;
    }
  
    .footer-left hr.footer-line {
      margin: 1rem auto;
      width: 80%;
      border: 0;
      border-top: 1px solid #ffffff;
    }
  
    .footer-menu {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin: 0 auto;
    }
  
    .footer-menu ul {
      padding: 0;
      margin: 0;
      list-style: none;
      text-align: center;
    }
  
    .footer-menu li {
      margin-bottom: 0.5rem;
    }
  
    .footer-social ul {
      flex-direction: row;
      justify-content: center;
      margin-top: 1rem;
    }
  
    .footer-cta,
    .footer-cta-1 {
      text-align: center;
    }
  
    .footer-cta p,
    .footer-left p {
      margin: 0 auto;
    }
  }
  