
            :root {
                --primaryColor: #d1ebff;
                --primaryContrastColor: #000;
                --secondaryColor: #000000;
                --secondaryContrastColor: #fff;
                --backgroundColor: #FFFFFF;
                --accentBackgroundColor: #F7F7F7;
                --accentBackgroundColorDark: #E5E5E5;
                --textHeadingColor: #000000;
                --textColor: #000000;
            }

            .triangle-top{all:unset}
.triangle-footer{all:unset}
.circles-top > svg {height:0px; width:0px}
.circles-bottom > svg {height:0px; width:0px}

/* Algemene stijl */
body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Koppen */
h1, h2, h3 {
  font-weight: 600;
  color: #222;
  margin: 20px 0;
  text-align: center;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #004999;
  text-decoration: underline;
}

/* Knoppen */
button {
  background: #0066cc;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #004999;
}

/* Containers / kaarten */
.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}





  border: none;
  padding: 12px 24px;
  border-radius: 0;
  font-family: Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  overflow: visible; /* zorgt dat driehoek zichtbaar blijft */
}

/* Het driehoekje rechts onder */
.button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px; /* hoe groter dit getal, hoe lager het hoekje */
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #36b5ff;
  pointer-events: none;
  transition: border-bottom-color 0.3s ease;
}

/* Hover-effect */
.button:hover {
  background-color: #2ea2e6;
}

.button:hover::after {
  border-bottom-color: #2ea2e6;
}

        