* {
    margin: 0; 
    padding: 0;
}
.article-100-huidig-situatie {
    min-height: 100vh; 
    background-color: white;
    display: flex;
    text-align: center;
}
.pijn-h2 {
    grid-column: 1 / span 2;
    text-align: center;
}
 .huidig-situatie {
    /* background-color: black; */
    display: grid;  
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: auto 1fr; 
    gap: 10px; 
    width: 80%;
    height: 100%;
    margin: 100px auto; 
}
.pijn-text{
    padding: 25px 0;
    text-align: left;
}
.pijn-text p{
    color: black;
}
.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 5px;/*  Gebruik jouw PNG */
    background-size: 16px 16px; /* Zorg dat de afbeelding de juiste grootte heeft */
    padding-left: 24px; /* Creëert ruimte tussen de afbeelding en de tekst */
    line-height: 24px; /* Zorgt voor verticale uitlijning met de bullet */
  }
.pijn-foto{
    display: flex;
    padding: 0;
    width: 100%;
    overflow: hidden;
    max-height:auto;

} 
.pijn-foto img {
    object-fit: cover;
    max-width: 95%;
    max-height: auto;
    display: inline-block;
    border-radius: 8px;
}
.button-scan {
    background-color: #0FB2F2;
    color: white;
    margin-top: 10px;
    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);
}

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