/* Hoofdsectie */

section {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 50px;
    background: #111;
    border-radius: 30px;
  }
  
  
  /* Titel */
  
  section h1 {
    color: #6ba368;
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
  }
  
  
  /* Adreskaart */
  
  section div {
    background: #1b1b1b;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
  }
  
  
  /* Ondertitel */
  
  section h2 {
    color: #6ba368;
    margin-bottom: 15px;
  }
  
  
  /* Tekst */
  
  section p {
    color: white;
    line-height: 1.8;
  }
  
  
  /* Google Maps */
  
  iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
  }
  
  
  /* Tablet */
  
  @media (max-width:900px) {
  
    section {
      padding: 35px;
    }
  
    section h1 {
      font-size: 2.5rem;
    }
  
    iframe {
      height: 350px;
    }
  
  }
  
  
  /* Mobiel */
  
  @media (max-width:700px) {
  
    section {
      width: 95%;
      padding: 25px;
      border-radius: 20px;
    }
  
    section h1 {
      font-size: 2rem;
    }
  
    section div {
      padding: 20px;
    }
  
    section h2 {
      font-size: 1.2rem;
    }
  
    section p {
      font-size: .95rem;
    }
  
    iframe {
      height: 300px;
    }
  
  }
  
  
  /* Kleine telefoons */
  
  @media (max-width:400px) {
  
    section {
      padding: 20px;
    }
  
    section h1 {
      font-size: 1.6rem;
    }
  
    section h2 {
      font-size: 1rem;
    }
  
    section p {
      font-size: .9rem;
    }
  
    iframe {
      height: 250px;
    }
  
  }