.intro-section {
    background-color: #eeece4; /* zachte beige achtergrond */
    padding: 4rem 1.5rem;
    text-align: center;
  }
  
  .content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .welcome {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #222;
    margin-bottom: 1rem;
  }
  
  .subtitle {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0 0 1.5rem;
    color: #222;
  }
  
  .description {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    display: inline-block;
    border: 1px solid #222;
    padding: 0.75rem 1.5rem;
    color: #222;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #222;
    color: white;
  }
  
  /* Video area */
  .video-container {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
  }
  
  .video-thumb {
    width: 100%;
    display: block;
    border-radius: 6px;
  }
  
  /* Play button in het midden */
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .play-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  