section {
    width: 100%;
    line-height: 2.5rem !important;
}

.body, .hero-section, .simple-blue-section, .trusted-by-section {
    background: var(--color-hero-background);
    
}

section h2{
    margin-top:0;
}

section h3{
    margin-bottom:0;
}

    .simple-blue-section h2 {
        display: inline;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .simple-blue-section p {
        text-align: center;
        margin: 0;
    }
    .simple-blue-section a {
        margin-left: auto;
        margin-right: auto;
    }


    .section-text > .button {
        margin-top: 1em;
        display: inline-block;
    }

.line-divider {
    background-color: var(--color-secondary);
    width: 15%;
    height: 3px;
}

ul {
    list-style-image: url('/images/listitem.svg');
    padding-left: 24px;
}

ul li {
    padding-left: 10px;
}


section .section-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* ensures columns spread */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

section.title-section .section-content{
    display:block;
    padding-bottom: 0;
}

.body-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.trusted-by-section .section-content {
    padding-top: 0;
}

section .section-image {
    flex: 0 0 40%; /* fixed 40% width */
    max-width: 40%; /* ensures flexbox doesn’t grow */
    
}

    section .section-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 1.5rem;
    }

section .section-text {
    flex: 1 1 55%; /* remaining width */
    min-width: 250px;
    
}

section.reverse .section-text {
    order: 2; /* move text after image */
}

section.reverse .section-image {
    order: 1; /* move image before text */
}




.section-topcorner {
    background-color: white;
    border-radius: 0 0 3rem 3rem;
    position: relative;
    margin-bottom: -50px;
    height: 50px;
}

.section-bottomcorner {
    background-color: white;
    border-radius: 3rem 3rem 0 0;
    position: relative;
    margin-top: -50px;
    height: 50px;
}

section.map3columns-section h2, .title-section h3, .title-section h1 {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    display: block;
}


section.map3columns-section {
    display: flex;
    flex-direction: row; /* horizontal cards */
    flex-wrap: wrap; /* allow wrapping on smaller screens */
    gap: 1rem; /* spacing between cards */
    justify-content: center;
    align-items: stretch; /* ensures all cards in the row have same height */
    padding: 2rem;
    text-align: center;
    color: white;
    background-image: url(/images/map.svg);
    background-size: cover;
    background-position: center;
}

    section.map3columns-section .section-content h2,
    section.map3columns-section .section-content p {
        flex: 0 0 100%;
    }

section.success-stories-section h2 {
    margin-left: auto;
    margin-right: auto;
}

section.success-stories-section {
    display: flex;
    flex-direction: row; /* horizontal cards */
    flex-wrap: wrap; /* allow wrapping on smaller screens */
    gap: 1rem; /* spacing between cards */
    justify-content: center;
    align-items: stretch; /* ensures all cards in the row have same height */
    padding: 2rem;
    text-align: center;
    background-image: url(/images/map.svg);
    background-size: cover;
    background-position: center;
}
}

section.success-stories-section .section-content h2,
section.success-stories-section .section-content p {
    flex: 0 0 100%;
}


.card {
    display: flex; /* makes it a flex container for its own content */
    flex-direction: column; /* stack content top-to-bottom */
    justify-content: flex-start; /* aligns content to top */

    flex: 1 1 300px; /* grow, shrink, base width */
    min-width: 250px;
    padding: 20px;
    background-color: white;
    color: black;
    border-radius: 10px;
    justify-content: flex-start; /* everything stays at the top */
    box-sizing: border-box;
}

    .card img {
        width: 56px;
        height: 56px;
        margin-left: -10px;
        margin-top: 22px;
    }
    .card div.bullet {
        background-image: url('/images/menu-bullet.svg');
        background-size: contain;
        background-repeat:no-repeat;
        margin-left: auto;
        width: 96px;
        height: 96px;
        margin-right: auto;
        margin-bottom: 1em;
    }
    .card div.bullet-small {
        width: 20px;
        margin-bottom: 0;
    }
        .card img:not(.bullet) {
        width: 100%;
        height: 200px;
        border-radius: 1rem;
        object-fit: cover;
    }

.card > :last-child {
    margin-top: auto;
}

    .card a {
        color: black;
        text-decoration: none;
    }

    .card h3 {
        
        
    }



    .card h3 {
        display: inline-flex; /* of flex als block */
        align-items: center; /* verticaal centreren */
        justify-content: center; /* horizontaal centreren */
        gap: 10px;
        font-size: 1.2rem;
        color: #555555;
        display: flex;
        flex-direction: column;
        align-items: center; /* or center */
        font-size: 1.5rem;
        margin-top: 0;
    }

.card  h3::before {
    content: "";
    height: 0;
    position:absolute;
    background-image: none;
    
}