    /* Extra kleine schermen */
    @media (max-width: 600px) {
      main {
        margin-left: 0;
        padding: 1rem;
      }
    }

    /* Custom styling voor tekst */
    main p, main h6 {
      font-family: 'Open Sans', sans-serif; 
    }

    main h1, main h2, main h3, main h5 { 
      font-family: 'Playfair Display', serif;
      font-weight: 600;
    }

    /* OMBEELDING STYLES - Gebruik unieke class names */
    .omgeving-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .omgeving-row {
      margin-bottom: 40px;
    }
    
    .omgeving-text-container {
      background-color: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }
    
    /* Carousel stijlen met unieke class */
.omgeving-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

.omgeving-carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.omgeving-carousel-item {
  min-width: 100%;
  width: 100%;
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
}
    
    .omgeving-carousel-item img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
      cursor: pointer;
    }
    
    .omgeving-carousel-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.6);
      color: white;
      padding: 10px;
      text-align: center;
    }
    
    .omgeving-carousel-controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 10px;
      z-index: 10;
    }
    
    .omgeving-carousel-btn {
      background: rgba(255,255,255,0.7);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }
    
    .omgeving-carousel-btn:hover {
      background: rgba(255,255,255,0.9);
    }
    
    .omgeving-carousel-indicators {
      display: flex;
      justify-content: center;
      padding: 10px;
      background: rgba(0,0,0,0.5);
    }
    
    .omgeving-indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      margin: 0 5px;
      cursor: pointer;
    }
    
    .omgeving-indicator.active {
      background: white;
    }
    
    /* Rij 3 - twee kolommen */
    .omgeving-row-3 {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .omgeving-column {
      flex: 1;
      min-width: 300px;
    }
    
    /* Modal voor vergrote afbeelding */
    .omgeving-modal {
      display: none;
      position: fixed;
      z-index: 10000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.9);
      overflow: auto;
    }
    
    
    .omgeving-close {
      position: absolute;
      top: 15px;
      right: 35px;
      color: #f1f1f1;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      z-index: 10001;
    }
    
    .omgeving-modal-controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 20px;
      z-index: 10001;
    }
    
    .omgeving-modal-btn {
      background: rgba(255,255,255,0.7);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    /* Responsive aanpassingen */
    @media (max-width: 768px) {
      .omgeving-row-3 {
        flex-direction: column;
      }
      
      .omgeving-carousel-item img {
        height: 250px;
      }
    }

    /* Zorg dat Bootstrap deze niet overschrijft */
    .omgeving-container .row,
    .omgeving-container .col,
    .omgeving-container .col-md-4 {
      /* Reset Bootstrap indien nodig */
      margin-bottom: 0;
      padding: 0;
    }

    /* Modal afbeelding centreren */
.omgeving-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Zorg dat de modal de volledige ruimte gebruikt */
.omgeving-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: hidden; /* Verander van auto naar hidden */
}

/* Modal controls ook centreren ten opzichte van viewport */
.omgeving-modal-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10001;
    pointer-events: none; /* Laat klikken door naar achterliggende elementen */
}

.omgeving-modal-btn {
    pointer-events: auto; /* Maar de knoppen zelf zijn wel klikbaar */
    background: rgba(255,255,255,0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.omgeving-modal-btn:hover {
    background: rgba(255,255,255,0.9);
}

/* Specifieke stijlen voor de carousels in rij 3 */
.omgeving-row-3 .omgeving-carousel {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.omgeving-row-3 .omgeving-carousel-item img {
    width: 100%;
    height: 300px; /* Iets kleinere hoogte voor de kleine carousels */
    object-fit: cover;
    display: block;
}

/* Zorg dat de carousels naast elkaar passen */
.omgeving-row-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.omgeving-row-3 .omgeving-column {
    flex: 1 1 calc(50% - 10px);
    min-width: 280px;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .omgeving-row-3 .omgeving-column {
        flex: 1 1 100%;
    }
    
    .omgeving-row-3 .omgeving-carousel-item img {
        height: 250px;
    }
}

/* Mobiele fixes voor carousel */
@media (max-width: 768px) {
  .omgeving-carousel {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
  }
  
  .omgeving-carousel-inner {
    display: flex;
    width: 100%;
  }
  
  .omgeving-carousel-item {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .omgeving-carousel-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  /* Zorg dat de container geen rare margins geeft */
  .omgeving-container {
    padding: 0;
    width: 100%;
    overflow: hidden;
  }
  
  /* Fix voor main padding op mobiel */
  main {
    padding: 1rem 0;
  }
  
  .omgeving-row {
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  /* Carousel zelf geen extra padding */
  .omgeving-row .omgeving-carousel {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}