.discover-section {
    background-color: #fff;
    padding: 4rem 0;
    overflow: hidden;
  }
  
  /* Fade‑in animatie */
  .fade-in {
    animation: fadeIn 0.8s ease-in-out;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  /* Tekststijl */
  .discover-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(16, 0, 115, 0.3);
  }
  
  .discover-section .dot {
    color: #100273;
  }
  
  .discover-section .lead {
    font-size: 1.125rem;
    color: #100273;
    margin-bottom: 2rem;
  }
  
  .discover-section .feature + .feature {
    margin-top: 1.5rem;
  }
  
  .discover-section .feature h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .discover-section .feature p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }
  
  /* Afbeelding styling & hover */
  .discover-image {
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .discover-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .discover-section {
      padding: 2rem 0;
    }
    .image-container,
    .text-container {
      width: 100%;
    }
    .image-container {
      margin-bottom: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .discover-section h2 {
      font-size: 2rem;
    }
    .discover-section .lead {
      font-size: 1rem;
    }
    .discover-section .feature h5 {
      font-size: 1rem;
    }
    .discover-section .feature p {
      font-size: 0.9rem;
    }
  }
  