    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Times New Roman';
    }

    body {
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    html {
  scroll-behavior: smooth;
}

    .container {
      max-width: 1200px;
      width: 100%;
    }

    .navbar-wrapper {
      width: 100%;
      background: #f4f4f4;
      position: relative;
      z-index: 999;
    }

    .navbar {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
/*      color: white;*/
      position: relative;
    }


    .navbar img {
      height: 80px;
    }

    .nav-links {
      list-style: none;
      display: flex;
      transition: max-height 0.3s ease;
    }

    .nav-links li {
      margin: 0 15px;
    }

    .nav-links a {
      color: black;
      text-decoration: none;
      font-size: 16px;
      position: relative;
      transition: color 0.3s;
    }

    .logo-with-text {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-size: 18px;
  color: #333;
  font-weight: 500;
}

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      left: 0;
      bottom: -4px;
      background-color: #AEBCF6;
      transition: width 0.3s;
    }

    .nav-links a:hover {
      color: #AEBCF6;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* Hamburger Icon */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle div {
      width: 25px;
      height: 3px;
      background: black;
      margin: 4px 0;
      transition: 0.4s;
    }

    .hero {
      position: relative;
      background: url('afbeeldingen/Hero.png') center/cover no-repeat;
      background-attachment: fixed;
      width: 100%;
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      color: white;
      text-align: left;
      padding-left: 20px;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
    }

    .hero-content {
      position: relative;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 20px;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-style: normal;
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: 0px;
      text-transform: none;
      margin-bottom: 10px;
    }

    .hero h1, .hero h3 {
      position: relative;
      padding: 5px;
      border-radius: 5px;
    }

    .two-column {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 40px;
    }

    .two-column .left, .two-column .right {
      flex: 1;
      padding: 20px;
    }

    .h1Font {
      font-size: 2rem;
      font-style: normal;
      font-weight: 600;
      line-height: 1.25;
      letter-spacing: 0px;
      text-transform: none;
      margin-bottom: 10px;
    }

    .pFont { 
      font-size: 1.125rem;
      font-style: normal;
      font-weight: 400;
      line-height: 1.5;
      letter-spacing: 0px;
      text-transform: none; 
    }

    .pFontBelowImage {
      font-size: 1.125rem;
      font-style: normal;
      font-weight: 400;
      line-height: 1.5;
      letter-spacing: 0px;
      text-transform: none;
      color: #595959;
      padding: 10px;
      padding-top: 0px;
      padding-left: 20px;
      display: flex;
      align-items: center;
    }

    .two-column img {
      width: 100%;
      max-width: 500px;
      display: block;
    }

    .tiles-section {
      background: #f4f4f4;
      width: 100%;
      padding: 40px 0;
      display: flex;
      justify-content: center;
    }

    .tiles-section .container {
      max-width: 1200px;
      width: 100%;
    }

    .tiles-section-header {
      text-align: left;
      margin-bottom: 30px;
      font-size: 24px;
      padding-left: 60px;
    }

    .tile img {
      width: 300px;
      height: auto;
      max-height: 200px;
      max-width: 300px;
    }

    .tiles {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .tile {
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-align: left;
      margin: 10px;
      flex: 1;
      max-width: 300px;
      min-width: 300px;
      transition: transform 0.3s ease;
      position: relative;
    }

    .tile h3 {
      padding: 10px;
      padding-left: 20px;
      display: flex;
      align-items: center;
      transition: color 0.3s ease;

      font-size: 1.25rem;
      font-style: bold;
      font-weight: 900;
      line-height: 1.25;
      letter-spacing: 0px;
      text-transform: none;
    }

    
    .tile .arrow {
      display: inline-block;
      margin-left: 5px;
      margin-top: 11px;
      transition: transform 0.3s ease;
    }

    .tile .arrow svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
/*      paddingtop: 5px;*/
    }

    .tile:hover {
      transform: scale(1.05);
    }

    .tile:hover h3 {
      color: #AEBCF6;
    }

    .tile:hover .arrow {
      transform: translateX(5px);
    }

    .contact-tile {
      align-content: center; 
      align-items: center; 
      text-align: center;
    }

    .tile.contact-tile svg {
      width: 30px;
      height: 30px;

      fill: #AEBCF6;
    }

    .contact {
      margin-top: 40px;
      text-align: left;
      min-height: 50vh;
    }

    .contact  a {
      text-decoration: none;
      color: black;
      font-weight: bold;
    }

    .contact a:hover {
      text-decoration: underline;
    }

    .contact p {
            margin: 8px 0;
            font-size: 18px;
        }

    .test {
      text-align: center;
      padding-left: 0px;
    }

.no-hover-underline {
  text-decoration: underline;
  color: inherit;
}

.no-hover-underline:hover {
  text-decoration: none;
}

.underline-slide {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.underline-slide::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #595959; /* your brand blue */
  transition: width 0.4s ease;
  transform-origin: left;
}

.underline-slide:hover::after {
  width: 0;
}

@media (min-width: 768px){
  .abc {
    display: inline-flex;
    margin-left: 60px;
  }
}


@media (max-width: 360px) {
  .hero h1 {
      font-size: 3.2rem;
    }
    .hero-content {
      padding-left: 5px;
    }
}

    @media (max-width: 768px) {
      .menu-toggle {
        display: flex;
      }

      .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        background: #f4f4f4;
        width: 100%;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
      }

      .nav-links.open {
        max-height: 500px;
        padding: 10px 0;
      }

      .nav-links li {
        margin: 10px 0;
      }

      .tiles {
        flex-direction: column;
        align-items: center;
      }

      .tiles-section-header {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
      }

      .two-column {
        flex-direction: column;
        text-align: center;
      }
    }