.section-1 {
    max-width: 100vw;
    height: 13.75rem; /* 220px */
    padding: 10% 10%;
    position: relative;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center bottom;
    clip-path: path("M 0 0 L 1300 0 L 1300 400 C 945 370 414 467 0 475 Z");
    background-image: url('../../assets/images/boekhouding/home/Documentenkast.png');
    z-index: -1;
    overflow: hidden;
    margin-top: -10%;
}

.section-1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 106, 32, 0.52); /* #006a2085 */
    clip-path: inherit;
    z-index: -1;
}

.intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    margin-top: -20%;
}

.image-wrapper {
    width: 18.75rem;
    height: 18.75rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #4CAF50;
    flex-shrink: 0;
    position: relative;
    top: -2rem; /* <<< dit verplaatst de hele cirkel omhoog */
}


.intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(2.2);
}

.text-block {
    background-color: rgb(255, 255, 255);
    color: #333;
    padding: 2rem;
    max-width: 38.25rem; /* 500px */
    border-radius: 1rem;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.738);
    position: relative;
    z-index: 1;
    text-align: left;
    line-height: 1.6;
}

/* Sectie 2, Reviews ---------------------------------------------------------------- */

/* Achtergrond reviews */
.section-2 {
    position: relative;
    height: 100%;
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    margin-top: 15%;
    padding: 10%;
    clip-path: path("M 0 0 C 316 1 466 53 723 39 C 975 35 1059 75 1300 41 L 1294 580 C 1191 579 1078 540 895 552 C 710 571 603 582 415 577 C 219 574 215 555 0 570 Z");
    background-size: cover;
    background-position: center;
}

.section-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../assets/images/boekhouding/home/Documentenkast.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* 50% opacity */
    z-index: -2;
}

.section-2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(189, 184, 177, 0.36); /* #bdb8b15d */
    clip-path: inherit;
    z-index: -1;
}

.text-block-2 {
    background-color: rgba(255, 255, 255, 0.472);
    color: #333;
    padding: 2rem;
    max-width: 31.25rem; /* 500px */
    border-radius: 1rem;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.738);
    position: relative;
    z-index: 1;
    text-align: left;
    line-height: 1.6;
    flex: 1;
    min-width: 18.75rem; /* 300px */
}

.text-blocks-wrapper {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

  