.custom-image-block {
    position: relative;
    width: 100%;
    padding-top: 133.33%;
    /* 3:4 ratio */
    overflow: hidden;
    border-radius: 15px;
}

.custom-image-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    z-index: 1;
}

.custom-image-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(0, 47, 121, 1) 75%, rgba(0, 27, 70, 1) 100%);
    pointer-events: none;
    border-radius: 15px;
    z-index: 2;
    /* overlay boven img */
    opacity: .75;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 27, 70, 0.5), rgba(0, 47, 121, 0) 50%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    border-radius: 15px;
    pointer-events: none;
    /* voorkom dat overlay clicks blokkeert */
}

.image-hover-item a:hover .hover-overlay {
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
    /* maak overlay klikbaar indien nodig */
}

.image-hover-item h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    margin: 0;
    font-size: 20px;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.image-hover-item {
    padding-top: 40px;
    padding-bottom: 40px;
}

.image-hover-item:nth-child(odd) {
    margin-top: 0;
}

.image-hover-item:nth-child(even) {
    margin-top: 40px;
    /* pas deze waarde aan naar wens */
}

@media (max-width:768px) {
    .image-hover-item {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .image-hover-item:nth-child(even) {
        margin-top: 0;
    }
}

.flex--justify-center {
    justify-content: center !important;
}

.full-width-section {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    /* bijvoorbeeld */
}

.full-width-section > .inner {
    max-width: 1350px;
    /* of wat je wilt */
    margin: 0 auto;
    padding: 40px 20px;
}

.usp-balk {
    background-color: #f7f7f7;
    margin-top: 30px;
    margin-bottom: 50px;
}

.usp-balk__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 16px;
}

.usp-balk__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.usp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
}

.usp-item img {
    height: 24px;
    width: auto;
}


.custom-content-block-formulier {
    background-color: #f7f7f7;
    margin-top: 50px;
}

.custom-content-block-formulier .inner {
    padding: 50px 0;
    width: 50%;
    margin: auto;
}

.custom-content-block-formulier input,
.custom-content-block-formulier textarea {
    background-color: #fff !important;
}

.custom-content-block-formulier .text-center {
    text-align: center;
}

.custom-content-block-formulier .content-block-intro {
    margin-bottom: 20px;
    margin-top: 20px;
}

.custom-content-block-formulier .wpcf7 {
    margin: auto;
}

@media (max-width: 768px) {
    .custom-content-block-formulier .inner {
        width: 100%;
        padding: 50px 20px;
    }
}

.header__image {
    min-height: 320px !important;
}

.custom-color-block {
    margin-top: 20px;
    margin-bottom: 20px;
}

.custom-color-block .color-block-intro {
    margin-bottom: 20px;
}

.custom-color-block .color-block-outro {
    margin-top: 20px;
    margin-bottom: 50px;
}

.custom-color-block .color-block-content {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.custom-color-block .color-block-content img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.custom-color-block .color-block-content h3 {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #ffffff;
    color: #002244;
    /* Donkerblauw */
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 999px;
    /* Zorgt voor de 'pill'-vorm */
    margin: 0;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-color-block .color-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
}

.custom-color-block .color-item {
    width: calc(33.333% - 20px);
    /* 3 per rij minus tussenruimte */
    margin: 0 10px 20px;
    box-sizing: border-box;
}

.custom-color-block .color-item.first-in-row {
    margin-left: 0;
}

.custom-color-block .color-item.last-in-row {
    margin-right: 0;
}

.custom-color-block .color-block-content h3 {
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .custom-color-block .color-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .custom-color-block .color-item {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

.specs-block {
    margin: 60px 0;
}

.specs-block h2 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #00205b;
}

.specs-intro {
    padding: 30px 0;
    font-size: 16px;
    color: #00205b;
}

.specs-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.specs-col {
    flex: 1;
    min-width: 300px;
}

.specs-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #d6d6d6;
    gap: 20px;
    padding: 0;
}

.specs-label {
    font-weight: 700;
    color: #00205b;
    font-size: 16px;
    width: 48%;
    word-wrap: break-word;
    padding-left: 10px;
}

.specs-value {
    font-size: 16px;
    color: #00205b;
    width: 48%;
    word-wrap: break-word;
    text-align: right;
}

/* Voor als een label meerdere waardes heeft (bijv. Treksterkte) */
.specs-multivalue .specs-row {
    border-bottom: 1px solid #d6d6d6;
}

.specs-multivalue .specs-label {
    font-weight: 700;
    color: #00205b;
    font-size: 16px;
    width: 48%;
    vertical-align: top;
}

.specs-multivalue .specs-value {
    width: 48%;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.specs-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-items: center;
    gap: 20px;
}

.specs-row:not(:last-child) {
    border-bottom: 1px solid #d6d6d6;
}

.specs-row--stacked {
    flex-direction: column;
    gap: 6px;
    padding: 0;
}

.specs-row--stacked .specs-label {
    border-bottom: 1px solid #d6d6d6;
    padding: 10px 0;
    padding-left: 10px;
}

.specs-row--stacked .specs-label,
.specs-row--stacked .specs-value {
    width: 100%;
    text-align: left;

}

.specs-label {
    font-weight: 700;
    color: #00205b;
    font-size: 16px;
    width: 48%;
    word-wrap: break-word;
}

.specs-value {
    font-size: 16px;
    color: #00205b;
    width: 48%;
    word-wrap: break-word;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Zorg dat elke individuele waarde ook een border krijgt */
.specs-value>div {
    padding: 10px 15px;
    border-bottom: 1px solid #d6d6d6;
}

/* Laatste waarde geen extra border */
.specs-value>div:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .specs-columns {
        flex-direction: column !important;
        gap: 0;
    }

    .specs-label {
        padding-left: inherit;
    }

    .specs-label,
    .specs-value {
        width: 100% !important;
        text-align: left !important;
    }

    .specs-row {
        gap: 0;
    }
}

.specs-intro-wrap {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.specs-intro {
    /* flex: 1 1 auto; */
}

.specs-download {
    flex-shrink: 0;
}

.specs-download .button--cta {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .specs-intro-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .specs-download {
        margin-top: 15px;
    }
}

.text-cta-block__text {
    margin-bottom: 20px;
}

.text-cta-block--centered {
    text-align: center;
}

.text-cta-block--centered .text-cta-block__buttons {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.statistieken-blok {
    background: #f1f1f1;
    padding: 60px 0;
    margin-top: 50px;
}

.statistieken-blok__items {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 90%;
}

.statistieken-blok__item {
    flex: 0 0 30%;
    padding: 50px;
}

.statistieken-blok__label {
    color: #062A5A;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.statistieken-blok__waarde {
    color: #F26A14;
    font-size: 40px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .statistieken-blok__item {
        flex: 0 0 100%;
        padding: 30px 20px;
    }
}

.extra-content-group {
    margin-top: 30px;
    margin-bottom: 20px;
}

.extra-content-group h4 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 24px;
}

.custom-intro-text__title span {
    font-weight: 400;
}

.titel-tekst-blok {
    padding: 50px 0;
    padding-bottom: 40px;
}

.text-cta-block {
    padding: 50px 0;
    padding-bottom: 40px;
}

.text-cta-block em {
    font-weight: 400;
}

.introduction.introduction-products .introduction {
    color: #002866;
    font-size: 24px;
}

.quote-slider {
    background-color: #f7f7f7;
    margin-top: 50px;
}

.quote-slider .inner {
    padding: 50px 0;
    width: 50%;
    margin: auto;
}

.quote-slide__quote {
    text-align: center;
    font-size: 24px;
    padding: 30px 0;
}

.quote-slide__logo {
    text-align: center;
    padding: 30px 0;
    padding-top: 0;
    display: flex;
    justify-content: center;
}

.quote-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    transition: none;
    text-indent: 0;
}

.quote-slider .slick-dots li button:before {
    font-size: 12px;
}

.quote-slider .slick-dots li.slick-active button:before {
    color: #F26A14;
}

.cta-buttons--centered {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-buttons .btn__icon {
    right: 15px;
    position: absolute;
    top: 15px;
}

.button>span {
    top: 2px;
    position: relative;
}

@media (max-width:768px) {
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
    text-transform: none;
}