/* Algemene opmaak en fade-in effect */
.about-section {
    background-color: #fff;
    padding: 2rem 0;
    overflow: hidden;
  }
  
  .fade-in {
    animation: fadeIn 0.8s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Tekst en typografie */
  .about-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);
  }
  
  .about-section .dot {
    color: #100273;
  }
  
  .about-section .lead {
    font-size: 1.125rem;
    color: #100273;
    margin-bottom: 1.5rem;
  }
  
  .about-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  /* Afbeelding styling en hover effect */
  .about-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;
  }
  
  .about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  /* Responsive aanpassingen */
  @media (max-width: 768px) {
    .about-section {
      padding: 1.5rem 0;
    }
    .text-container, 
    .image-container {
      width: 100%;
    }
    .text-container {
      margin-bottom: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .about-section h2 {
      font-size: 2rem;
    }
    .about-section .lead {
      font-size: 1rem;
    }
    .about-section p {
      font-size: 0.9rem;
    }
  }
  