body { background: (144deg,#2c2c2c 0%, #383838 35%, #505050 100%); }

.maatwerk-h2 {
    font-size: 2rem;
    margin: 0;
    color: #fff;
}

.maatwerk-container {
    padding-left: 18rem;
    padding-right: 18rem;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.maatwerk-titel {
    font-family: Roboto-Black;
    color: #fff;
    font-size: 3rem;
    text-align: center;
}

.maatwerk-box {
    margin-top: 5vh;
    backdrop-filter: blur(2px);
    padding: 5vh;
    border: 2px solid #fff;
    border-radius: 30px;
}

.maatwerk-subinfo {
    color: white; 
    font-size: 1.1rem; 
    padding-left: 2vw;
    padding-right: 2vw;
    font-family: Roboto-Regular;
}

.maatwerk-regel {
    background-color: rgba(6, 19, 37, 0.7);
    padding: 5vh;
    border-radius: 20px;
    border: 2px solid #143b72;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* grid niet klikbaar */
    display: grid;
    grid-template-columns: repeat(auto-fill, 40px); /* vaste breedte per vakje */
    grid-template-rows: repeat(auto-fill, 40px);    /* vaste hoogte per vakje */
    z-index: 0; /* achter content */

    background: linear-gradient(144deg,#2c2c2c 0%, #383838 35%, #505050 100%);
}

.grid-overlay::after {
    content: '';
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    background-size: 40px 40px; /* vierkante vakjes */
    background-image: 
        linear-gradient(to right, #ffffff20 1px, transparent 1px),
        linear-gradient(to bottom, #ffffff20 1px, transparent 1px);
    position: absolute;
    width: 100%;
    height: 100%;
}



/* Process container */
.maatwerk-process-container {
    background-color: rgba(6, 19, 37, 0.7);
    border-radius: 20px;
    border: 2px solid #143b72;
    width: 100%;
    margin-bottom: 10vh;
    display: flex;
    flex-direction: row;
}

.maatwerk-process-box {
    border-right: 2px solid #143b72;
    width: 20%;
}
.maatwerk-process-box h4 {
    border: 1px solid #143b72;
    border-radius: 100%;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
    font-size: 1.3rem;
    height: 40px;
    width: 40px;
    color: #143b72;
    margin: 0;
}
.maatwerk-process-box h5 {
    color: #fff;
    text-align: center;
    font-family: Roboto-Black;
    font-size: 1rem;
    margin: 0;
    margin-top: 3vh;
}
.maatwerk-process-box p {
    color: #fff;
    text-align: center;
    font-family: Roboto-Regular;
    font-size: 0.8rem;
}

.maatwerk-process-box-inner {
    padding: 3vh;
}



/* Bestaande styles */
.MMS-header {
    background-color: rgba(26, 26, 26, 0.7);
}

.MMS-footer-container {
    box-shadow: none;
    background-color: rgba(26, 26, 26, 0.7);
}