    body {
      background-color: #fff;
      color: #000;
    }

    .container-top {
      border-bottom: 1px solid #000;
    }

    .container {
      max-width: 1200px;
      padding-left: 1rem;
      padding-right: 1rem;
      margin-left: auto;
      margin-right: auto;
    }

    .navbar {
      border-bottom: 1px solid #000;
    }

    .square-btn {
      display: inline-block;
      background-color: #000;
      text-align: center;
      padding: 12px 20px;
      text-transform: uppercase;
      font-weight: bold;
      transition: all 0.3s ease;
      border-radius: 6px;
    }

    .square-btn-transparent {
      display: inline-block;
      border: 2px solid #000;
      background-color: transparent;
      text-align: center;
      padding: 10px 20px;
      text-transform: uppercase;
      font-weight: bold;
      transition: all 0.3s ease; 
      border-radius: 6px;
    }

    .square-btn:hover {
      background-color: #000;
      color: #fff;
      text-decoration: none;
    }

    .hero-section {
      position: relative;
      width: inherit;
        max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
      height: 450px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      overflow: hidden;
      -webkit-mask-image: 
        linear-gradient(to right, transparent, black 20%, black 80%, transparent),
        linear-gradient(to bottom, black 90%, transparent);
      -webkit-mask-composite: destination-in;
      mask-image: 
        linear-gradient(to right, transparent, black 20%, black 80%, transparent),
        linear-gradient(to bottom, black 90%, transparent);
      mask-composite: intersect;
    }

    .hero-section .container {
      max-width: 1000px;
      z-index: 2;
      color: white;
      padding-left: 5%;
    }

    .hero-text {
      font-size: 2.5rem;
      font-weight: bold;
      text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
      margin-bottom: 1rem;
    }

    .hero-button a {
      background-color: black;
      padding: 1rem 2rem;
      text-transform: uppercase;
      border-radius: 0;
      font-weight: bold;
      border-radius: 6px;
    }

    footer {
      background: #f8f8f8;
      border-top: 1px solid #000;
      padding: 2rem 0;
    }

    footer ul li {
      list-style: none;
      margin-bottom: 0.5rem;
    }

    footer a {
      color: #000;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .section-light {
  background-color: #f8f8f8; /* Heel lichtgrijs, past mooi bij je footer */
}

.section-divider {
  border-top: 1px solid #ddd;
}

.card-shadow {
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.img-container-landscape-xl {
  display: flex;
  width: 100%;
  height: 10rem;
  text-align: center;
}

.img-container-landscape-xl img {
  max-width: 13.5rem;
  max-height: 10rem;
}

.text-rows-2 {
  min-height: 3.25rem;
}

.text-rows-2 .line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-rows-3 {
  min-height: 5rem;
}

.text-rows-3 .line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.impressie {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .impressie {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .impressie {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .impressie {
    grid-template-columns: repeat(4, 1fr);
  }
}

.impressie {
  grid-gap: 10px;
}

.d-grid {
  display: grid !important;
}