* {
    margin: 0; 
    padding: 0;
}
.article-aanbod {
    /* min-height: 100vh;  */
    background-color: #F8FAFB;
    display: flex;
    justify-content: center;
    align-items: start;
}
.aanbod-title {
    display: flex;
    position: absolute;
    padding: 40px;
    margin-top: 20px;
    font-size: 30px;
}
#aanbod {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 200px 0;
    width: 80%;
    justify-content: center; 
    align-items: center;
}
.aanbod {
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-size: 30px;
    text-align: center; 
    border-radius: 10px;
    min-height: 320px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.aanbod h2 {
    color: #0FB2F2;
    font-size: 20px;
}

.custom-bullets {
    list-style: none; /* Verwijdert de standaard bulletpoints */
    padding: 0; /* Optioneel, verwijdert extra ruimte */
  }
  
.custom-bullets li {
    background: url('Fotos/bulletpoint.png') no-repeat left top 25px;/*  Gebruik jouw PNG */
    background-size: 16px 16px; /* Zorg dat de afbeelding de juiste grootte heeft */
    padding-top: 20px;
    padding-left: 24px; /* Creëert ruimte tussen de afbeelding en de tekst */
    line-height: 24px; /* Zorgt voor verticale uitlijning met de bullet */
    font-size: 15px;
    display: flex;
    text-align: left;
  }


  .button-aanbod {
    background-color: #0FB2F2;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: min-content;
    white-space: nowrap;
    align-self: center;

  }

.button-aanbod:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}