html {height: 100%}

body {height: 100%;
      margin: 0;
      background-color: #FFF;
      font-size: 62.5%}

h1 {font-family: Arial, sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    font-style: normal;
    padding-top: 1.5em}

h2 {font-family: Arial, sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    font-style: normal;
    padding-top: 1.5em}
    

.box-top-bg {width: 100%;
             max-width: 1400px;
             height: auto;
             margin-left: auto;
             margin-right: auto;
             background-color: #449DBC;
             clear: both;
             z-index: 1}

.box-top {width: 100%;
          max-width: 1400px;
          height: auto;
          margin-left: auto;
          margin-right: auto;
          background-color: #000;
          border-bottom-left-radius: 70% 50%;
          border-bottom-right-radius: 30% 20%;
          clear: both;
          z-index: 2}


.box-FFF {width: 100%;
          padding: 3em 0 1.2em 0;
          background-color: #FFF;
          z-index: 1}


.content-box {width: 100%;
              max-width: 990px;
              margin: auto;
              z-index: 2}


.content {padding: 0 1em 0 1em;
          font-family: Arial, sans-serif;
          font-size: 2em;
          line-height: 160%;
          color: #16333C;
          z-index: 3}

.content a{color: #0D6EFD;
           font-style: italic;
           font-weight: bold;
           text-decoration: none}

.content a:hover{color: #0D6EFD;
                 font-style: italic;
                 font-weight: bold;
                 text-decoration: none}


.knop {padding: 0.5em 1em 0.5em 1em;
       font-family: Arial, sans-serif;
       font-size: 1em;
       background-color: #449DBC;
       color: #FFFFFF;
       border: none;
       cursor: pointer}
 
.knop:hover {color: #16333C}


.beeld-tekst {width: 98%;
              font-size: 0.8em;
              text-align: right;
              font-style: italic;
              margin-top: 0}

.beeld {width: 100%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding-top: 1em}

@media only screen and (max-width: 700px) {

.beeld-tekst {width: 100%}

.beeld {width: 100%}

}


    /* Basisreset van standaard opsommingstekens */
.square-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.square-list h1 {
  margin: 0;            /* verwijder standaard marges van H1 */
  padding: 0;           /* verwijder je padding-top */
  line-height: 1.2;     /* iets compactere regelhoogte */
}

    /* Stijl voor elk lijst-item */
.square-list li {
  display: flex;               /* ✔ bullet en tekst netjes naast elkaar */
  align-items: center;         /* ✔ verticale uitlijning */
  gap: 1.4rem;                 /* ruimte tussen vierkantje en tekst */
  margin: 2.8rem 0;
}

    /* Pseudo-element dat het blauwe vierkantje tekent */
.square-list li::before {
  content: "";
  flex: 0 0 2rem;            /* vaste breedte */
  height: 0.8rem;
  background: #0D6EFD;
  border-radius: 0px;
}

    /* Optioneel: hover-effect op het item */
    .square-list li:hover::before {
  background: #000;
    }
