body {
    line-height: 1.6; /* Pas de waarde aan naar wens */
}

p {
    line-height: 1.8 !important;
    margin-bottom: 18px !important; 
   
    
    
}
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 24px !important;
    

}

.top-space {
    height: 15px;
}


.content-grid-item h3 {
  text-transform: none;
}


h2 {
    margin-top: 40px !important;
    margin-bottom: 12px !important;
}






.grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.grid-item {
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  min-height: 120px;
  background-color: #da1a0d;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  transition: background-color 0.3s;
  text-decoration: none;
}

.grid-container:first-of-type .grid-item,
.grid-container:last-of-type .grid-item {
  background-color: rgb(124, 123, 123); /* lichtgrijs */
  color: black;
}

.grid-container:first-of-type .grid-item:hover,
.grid-container:last-of-type .grid-item:hover {
  background-color: #e0e0e0; /* nog iets lichter grijs bij hover */
}

.grid-item:hover {
  background-color: #ccc;
}

@media (min-width: 768px) {
  .grid-container:nth-of-type(2) .grid-item {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
}

@media (max-width: 600px) {
  .grid-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}



.content-grid-item {
  transition: box-shadow 0.3s ease;
  border-radius: 8px;
}

.content-grid-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.content-grid-item img {
  transition: transform 0.3s ease;
}

.content-grid-item:hover img {
  transform: scale(1.05);
}




.grid-item,
.grid-item:visited,
.grid-item:hover,
.grid-item:active {
  color: white !important;
}



