.contact-section {
    background-color: white;
    padding: 4rem 2rem;
    font-family: 'Segoe UI', sans-serif;
    color: #111;
  }
  
  .contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .contact-text {
    flex: 1 1 500px;
  }
  
  .contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
  }
  
  .contact-text h2 {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-text .intro {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #003366; /* donkerblauw */
  }
  
  .contact-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .contact-image {
    flex: 1 1 400px;
    background-color: #d9d9d9;
    height: 400px;
  }
  