:root {
  --blue-color: #2f2a7e;
  --orange-color: #de5e45;
  --background-color: #f7f7f7;
  --gray-color: rgb(241, 241, 241);
  --logo-color-gold: #f7b731;
  --logo-color-white: #ffffff;
  --logo-color-orange: var(--orange-color);

  --logo-total-size: 100px; 
  --logo-cell-size: calc(var(--logo-total-size) / 2);
  --logo-dot-size: 24px; 
}
body {
    font-family: 'Nunito', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--background-color);
}
header .nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
    padding-left: 0;
}
header .nav-list li a {
    text-decoration: none;
    color: black;
    position: relative;
    transition: color 0.3s ease;

    &::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: var(--orange-color);
        transition: width 0.3s ease;
    }

    &:hover {
        color: var(--orange-color);

        &::after {
            width: 100%;
        }
    }
}

.menu-toggle {
    display: none;
}

    .menu-toggle,
    .menu-toggle svg {
        -webkit-tap-highlight-color: transparent;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
    }

    .menu-toggle { width: 52px; height: 52px; padding: 8px; }
    .menu-toggle .icon {
        position: absolute;
        inset: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform 260ms ease, opacity 200ms ease;
    }
    .menu-toggle svg { width: 28px; height: 28px; }
    .menu-toggle .icon-menu { transform-origin: center center; }
    .menu-toggle .icon-close { transform-origin: center center; }

    .menu-toggle:focus { outline: none; }
    .menu-toggle:focus-visible { box-shadow: 0 0 0 3px rgba(46,117,255,0.15); border-radius: 6px; }

.main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}

.right-menu {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
}
.topbar {
    background-color: var(--blue-color);
    color: white;
    padding: 10px 0;
}

.topbar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

header {
    position: sticky;
    top: 0;
    z-index: 100010;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

header .main-menu,
header .topbar {
    background: transparent;
}
.text-topbar, .phone-topbar, .email-topbar {
    font-size: 15px;
}

.site-logo img {
    width: 250px;
    height: auto;
}

.chevron-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-left: 4px;
}
.right-menu nav {
    margin-top: 14px;
}

.nav-list .sub-menu {
    display: none;
    position: absolute;
    background: var(--background-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 10px 0;
    min-width: 180px;
    z-index: 100;
    pointer-events: auto;
    transition: opacity 0.15s;
}
.nav-list li {
    position: relative;
}
.nav-list li:hover > .sub-menu,
.nav-list li:focus-within > .sub-menu {
    display: block;
    opacity: 1;
}
.nav-list .sub-menu li {
    display: block;
    padding: 0 18px;
}
.nav-list .sub-menu li a {
    color: #222;
    padding: 8px 0;
    display: block;
}
.nav-list .sub-menu li a:hover {
    color: var(--orange-color);
}

.container {
	max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}


.phone-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}
.email-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}


.search-form {
    position: relative;
    margin-left: 18px;
    display: flex;
    align-items: center;
}
.search-form .search-field {
    display: none;
    position: absolute;
    right: 48px;
    top: 0;
    height: 40px;
    width: 180px;
    border: 1px solid var(--orange-color);
    border-radius: 4px 0 0 4px;
    padding: 0 12px;
    font-size: 16px;
    outline: none;
    background: #fff;
    z-index: 10;
}
.search-form .search-submit {
    background: var(--orange-color);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 0;
}
.search-form .search-submit svg {
    display: block;
}
.search-form .search-submit:hover {
    background: var(--blue-color);
}
.search-form .screen-reader-text {
    display: none;
}

.component {
    padding: 60px 0;
    h2 {
        font-size: 32px;
        margin-bottom: 10px;
        font-weight: 700;
        color: black;
    }
    h3 {
        font-size: 22px;
        margin-bottom: 8px;
        font-weight: 500;
        color: black;
    }
    p {
        font-size: 18px;
        line-height: 1.6;
        font-weight: 300;
        color: black;
    }
}

footer {
    background-color: var(--gray-color);
    color: black;
    padding: 60px 0;
}
.title-footer {
    h2 {
        font-weight: 700;
    }
}
.top-footer {
    .phone-footer {
        margin-top: 7px;
    }
    .footer-email-icon {
       width: 40px;
       height: 27px;
       margin-right: 10px;
    }
    .footer-phone-icon {
        height: 25px;
        width: 38px;
        margin-right: 13px;
        margin-left: -1px;
    }
    .kvk-footer {
        margin-top: 7px;
        p {
            margin: 0;
        }
    }
    
}
.footer-logos {
    margin-top: 20px;
    margin-left: 0 !important;
    border-top: 2px solid rgba(196, 196, 196, 0.5);
    border-bottom: 2px solid rgba(196, 196, 196, 0.5);
    padding: 40px 120px !important;
    display: flex;
    flex-direction: column;
    
    .kpz-logo {
        width: 570px;
        height: 68px;
        padding-left: 0;
        margin: 0 auto;
    }
    .keurmerk-logo {
        width: 154px;
        height: auto;
        margin: 0 auto;
        padding-left: 0;
        margin-top: 40px;
    }
}
.keurmerk-intro {
    text-align: center;
}


.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;           
    width: 100%;
    margin-top: 80px;
    .bottom-footer-left {
        a {
            color: black;
            text-decoration: none;
        }
        a:hover {
            color: var(--orange-color);
        }
    }
}


.bottom-footer p {
    margin: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
     border-radius: 15px;
}
.hero-image img {
    width: 100%;
    max-width: 1800px;
    height: 600px;
    object-fit: cover;
    margin: 0 auto;
    padding: 0 40px;
   
}
.uk-grid.hero-content {
    margin: 40px 0;
}
.hero-section.component {
    padding-top: 0;
}
.hero-section .uk-grid.hero-content {
    h2 {
        max-width: 450px;
    }
    p {
        max-width: 560px;
    }
    .hero-text {
        padding-left: 0;
    }
    .hero-intro {
        padding-left: 200px;
    }
}

.usp-section {
    background-color: var(--gray-color);
    .usp-content {
        margin: 0 auto;
        text-align: center;
        .usp-item {
            padding: 40px 0;
        }
        .usp-icon {
            width: 48px;
            height: 48px;
            background-color: rgba(222, 94, 69, 1);
                border-color: rgba(222, 94, 69, 1);
            border-radius: 50%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            img {
                opacity: 1;
            }
        }
        .usp-inner {
            margin-top: 20px;
        }
    }
}
.usp-item:not(:nth-child(3n)) {
    border-right: 2px solid rgba(196, 196, 196, 0.5);
}

.usp-item:nth-child(-n+3) {
    border-bottom: 2px solid rgba(196, 196, 196, 0.5);
}

.cta-section {
    margin: 40px 0;

    .cta-content {
        background-color: var(--blue-color);
        padding: 80px 0 60px;
        border-radius: 15px;
        position: relative;
        overflow: hidden;
        

        h2 {
            color: white;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .cta-button {
            background-color: var(--orange-color);
            border-radius: 15px;
            text-align: left;
            margin: 30px auto 0;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid transparent; 
            width: fit-content;

            a {
                color: white;
                text-decoration: none;
                font-size: 18px;
                display: flex; 
                align-items: center;
                justify-content: left;
                padding: 14px 20px;
                width: 100%;
            }

            .chevron-wrapper {
                position: relative;
                width: 9px;
                height: 9px;
                margin-left: 10px;
                display: flex;
                align-items: center;
            }

            .chevron-icon {
                position: absolute;
                width: 12px;
                height: auto;
                transition: opacity 0.3s ease, transform 0.3s ease;
            }

            .chevron-icon.black { opacity: 0; }
            .chevron-icon.white { opacity: 1; }

            &:hover {
                background-color: #ffffff;
                border: 1px solid #222;

                a {
                    color: black;
                }

                .chevron-icon.white {
                    opacity: 0;
                }
                .chevron-icon.black {
                    opacity: 1;
                }
            }
        }
        .logo-container {
            margin-left: auto;
            left: -2px;
            bottom: -11px;
            position: absolute;
            background-image: url(../img/logo-cta.png);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: left bottom;
            width: 150px;
            height: 150px;
        }
    }
}

/* Over mij */
.over-mij-image {
    img {
        width: 100%;
        border-radius: 15px;
        margin-top: 19px;
    }
}
.over-mij-content {
    p {
        max-width: 530px;
        color: white;
        font-weight: 400;
    }
    h2 {
        color: white;
    }
}
.over-mij-section {
    background-color: var(--blue-color);
}
.over-mij-section.component {
    padding-bottom: 25px;
}
.over-mij-content-two {
    background-color: var(--blue-color);
    padding-bottom: 40px;
    p {
        font-size: 18px;
        line-height: 1.6;
        font-weight: 400;
        color: white;
    }
}

.visie-section {
    padding: 100px 0;
    background-color: #f9fbfd;
    text-align: center;
}

.vision-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    h2 {
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 3px;
    }
    p {
        margin-top: 10px;
    }
}

.vision-subtitle {
    font-size: 1rem;
    margin-bottom: 80px;
    font-weight: 700;
    
}

.vision-quote {
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.vision-quote p {
    font-size: 1.8rem; 
    line-height: 1.5;
    color: var(--blue-color); 
    font-style: italic;
    font-weight: 400;
}

.vision-quote::before {
    content: "“";
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: rgba(242, 139, 0, 0.7); 
    font-family: serif;
}

.ervaring-section {
    text-align: center;
    background-color: #ffffff;

    h2 {
        margin-bottom: 50px;
    }

    .ervaring-card {
        background-color: var(--background-color);
        padding: 40px 25px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 3px solid transparent;

        &:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-bottom: 3px solid var(--orange-color);

            .ervaring-icon {
                background-color: var(--blue-color);
                color: #ffffff;
            }
        }

        h3 {
            font-size: 20px;
            color: var(--blue-color);
            margin-bottom: 10px;
        }

        p {
            font-size: 16px;
            color: #555;
            margin: 0;
        }
    }

    .ervaring-icon {
        width: 70px;
        height: 70px;
        background-color: rgba(47, 42, 126, 0.08); 
        color: var(--blue-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
}
.begeleiding-hero {
    position: relative;
    background-size: cover;
    background-position: center center; 
    background-repeat: no-repeat;
    
    min-height: 60vh; 
    padding: 40px 20px; 
    
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    z-index: 1;
    text-align: center;
}

.begeleiding-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(47, 42, 126, 0.30); 
    z-index: -1; 
}

.begeleiding-hero h1,
.begeleiding-hero p {
    color: #ffffff;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.begeleiding-hero h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.begeleiding-hero p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 20px;
}

.target-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    border: 1px solid var(--gray-color);
    transition: transform 0.3s ease;
    margin-top: 10px;
    h3 {
        margin-top: 20px;
    }
}
.target-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-color);
}
.target-card span {
    color: var(--orange-color);
    margin-top: 10px;
}

.begeleiding-lijst-section.component {
    background-color: #ffffff;
    padding: 80px 0;
    h2 {
        margin-bottom: 40px;
    }
    h3 {
        font-size: 26px;
        margin-bottom: 30px;
    }
}

.begeleiding-hoofdtitel {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
}


.arrow-list {
    list-style: none;
    padding: 0;
}

.arrow-list li {
    position: relative;
    font-size: 17px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}


.arrow-list li::before {
    content: url('../img/arrow-right.svg');
    margin-right: 20px;
}

.uk-grid-divider>:not(.uk-first-column)::before {
    border-left: 1px solid #cccccc !important;
}

@media (max-width: 960px) {
    .begeleiding-hoofdtitel {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

.begeleiding-cta-section {
    margin: 40px 0;
    .button-holder {
        padding-left: 0;
    }
    .text-holder {
        padding-left: 200px;
    }
}

.begeleiding-cta-section .container {
    background-color: var(--blue-color);
    padding: 80px 40px 60px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.begeleiding-cta-section h2 {
    color: white;
    margin-bottom: 10px;
}

.begeleiding-cta-section p {
    color: white;
    opacity: 0.9;
    font-weight: 300;
    max-width: 500px;
}

.begeleiding-cta-section .cta-button {
    background-color: var(--orange-color);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent; 
    width: fit-content;
    margin: 0 auto;
}

.begeleiding-cta-section .cta-button a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: flex; 
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    max-width: 200px;
}

.begeleiding-cta-section .chevron-wrapper {
    position: relative;
    width: 9px;
    height: 9px;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.begeleiding-cta-section .chevron-icon {
    position: absolute;
    width: 12px;
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.begeleiding-cta-section .chevron-icon.black { opacity: 0; }
.begeleiding-cta-section .chevron-icon.white { opacity: 1; }

.begeleiding-cta-section .cta-button:hover {
    background-color: #ffffff;
    border: 1px solid #222;
}

.begeleiding-cta-section .cta-button:hover a {
    color: black;
}

.begeleiding-cta-section .cta-button:hover .chevron-icon.white {
    opacity: 0;
}

.begeleiding-cta-section .cta-button:hover .chevron-icon.black {
    opacity: 1;
}

.begeleiding-cta-section .container::before {
    content: "";
    left: -2px;
    bottom: -11px;
    position: absolute;
    background-image: url(../img/logo-cta.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    width: 150px;
    height: 150px;
    opacity: 1;
    pointer-events: none;
}

.werkwijze-hero {
    background-color: #fff;
    padding: 100px 0;
    .text-holder {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;            
        padding-left: 0;
    }
}

.werkwijze-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--blue-color);
    margin-bottom: 10px;
    text-align: center;
}

.werkwijze-hero .subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-image-wrapper img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.timeline-section {
    background-color: var(--background-color);
    overflow: hidden;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    position: relative;
    gap: 20px;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--orange-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 4px 10px rgba(222, 94, 69, 0.3);
    border: 4px solid white;
}

.timeline-item h3 {
    font-size: 18px;
    font-weight: 700;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item p {
    font-size: 15px;
    color: black;
    padding: 0 10px;
    margin-top: 10px;
}

.step-line {
    position: absolute;
    top: 25px;
    left: calc(50% + 40px);
    width: calc(100% - 60px);
    height: 2px;
    background: repeating-linear-gradient(to right, var(--orange-color) 0, var(--orange-color) 5px, transparent 5px, transparent 10px);
    z-index: -1;
}

.contact-hero {
    background-color: var(--blue-color);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    color: white;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero .intro-text {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-form-section {
    background-color: #fff;
    padding: 80px 0;
}

.contact-info h3 {
    color: var(--blue-color);
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--orange-color);
    display: inline-block;
    padding-bottom: 5px;
}

.form-holder {
    padding: 60px;
    background-color: var(--background-color);
}

.form-holder h2 {
    font-size: 24px;
    color: var(--blue-color);
    font-weight: 600;
    margin-bottom: 40px;
}

.form-holder .gform_wrapper input:not([type="submit"]):not([type="button"]):not([type="hidden"]),
.form-holder .gform_wrapper textarea,
.form-holder .gform_wrapper select {
    width: 100% !important;
    padding: 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
    box-sizing: border-box;
}

.form-holder .gform_footer input[type="submit"],
.form-holder .gform_button {
    background-color: var(--orange-color) !important;
    color: white !important;
    border: none !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: 0.3s ease !important;
}

.form-holder .gform_footer input[type="submit"]:hover,
.form-holder .gform_button:hover {
    background-color: var(--blue-color) !important;
}

.form-holder .gfield_label {
    display: none;
}

.page-id-31 .title-footer, .page-id-31 .top-footer{
    display: none;
}

.klachten-intro {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
}

.klachten-intro p {
    margin-bottom: 20px;
}

.klachten-intro a {
    color: var(--blue-color, #2b3990); 
    text-decoration: underline;
    font-weight: 600;
}

.klachten-intro a:hover {
    color: var(--orange-color, #e45b35); 
}

.klachten-heading {
    color: var(--blue-color, #2b3990);
    margin: 50px 0 30px;
    font-size: 26px;
    font-weight: 700;
}

.procedures-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .procedures-grid {
        grid-template-columns: 1fr 1fr; 
    }
}

.procedure-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-top: 4px solid var(--orange-color, #e45b35); 
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.procedure-card h3 {
    color: var(--blue-color, #2b3990);
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.procedure-card p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.procedure-card p:last-child {
    margin-bottom: 0;
}

.procedure-card ul {
    color: #444;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 15px;
    padding-left: 20px;
}

.procedure-card li {
    margin-bottom: 8px;
}

.card-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pdf-button-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f4f4f4;
    color: var(--blue-color, #2b3990);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    text-decoration: none !important;
}

.pdf-button-small:hover {
    background-color: var(--orange-color, #e45b35);
    color: white;
    border-color: var(--orange-color, #e45b35);
}

.document-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pdf-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none !important;
    transition: 0.3s;
}

.main-btn {
    background-color: white;
    border: 1px solid var(--blue-color, #2b3990);
}

.secondary-btn {
    background-color: var(--blue-color, #2b3990);
    color: white;
}

.pdf-button:hover {
    opacity: 0.9;
    color: white;
    border-color: var(--orange-color);
}

.algemene-documenten {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pdf-button-small span, .pdf-button span {
    flex-shrink: 0;
}
.slogan-section {
    margin-top: 80px;
    text-align: center;
    h2 {
        font-size: 28px;
        font-weight: 700;
        color: var(--blue-color);
        margin-bottom: 50px;
    }
    ul {
        list-style: none;
    }
    li::before {
        content: url('../img/check.svg');
        margin-right: 8px;
        transform: translateY(6px);
        display: inline-block;
    }
    li {
        font-weight: 500;
        color: black;
        font-size: 17px;
    }
}
.page-id-81 .slogan-section {
    background-color: white;
    padding: 80px 0;
    margin-top: 50px;
}
.page-id-83 .slogan-section {
    background-color: white;
    padding: 80px 0;
    margin-top: 20px;
}
.page-id-88 .slogan-section {
    background-color: white;
    padding: 60px 0 80px;
    margin: 0;
    
}

@media only screen and (max-width: 1439px) {
    .container {
        padding: 0 30px;
    }
    .component {
        padding: 40px 0;
    }
    .hero-image img {
        padding: 0 30px;
    }
    .component h1 { font-size: 48px; line-height: 1.1; }
    .component h2 { font-size: 36px; line-height: 1.2; }
    .component h3 { font-size: 24px; line-height: 1.25; }
    .component h4 { font-size: 18px; line-height: 1.3; }
    .component p  { font-size: 18px; line-height: 1.6; }

    .cta-content {
        h2 {
            font-size: 28px;
        }
    }

    .begeleiding-cta-section {
        .container {
            max-width: 95%;
        }
    }

    .form-holder {
        h2 {
            font-size: 22px;
        }
    }
}

@media only screen and (max-width: 1200px) {
    .usp-section {
        h3 {
            font-size: 20px;
        }
    }
}

@media only screen and (max-width: 1023px) {
    .component {
        padding: 30px 0;
    }
    .menu-toggle {
        display: none;
        background: transparent;
        border: none;
        cursor: pointer;
        color: var(--orange-color);
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        padding: 6px;
        position: relative;
        z-index: 100002;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        max-height: 100vh;
        width: 84%;
        max-width: 420px;
        background: var(--background-color);
        padding: 24px 28px 80px 28px;
        box-shadow: 6px 0 30px rgba(0,0,0,0.15);
        transition: transform 360ms cubic-bezier(.2,.9,.2,1), left 360ms cubic-bezier(.2,.9,.2,1);
        transform: translateX(0);
        overflow:auto;
        z-index: 100009;
    }

    .nav-list .sub-menu { display: none; }

    body.nav-open .nav-list {
        left: 0;
    }

    .nav-list li {
        display: block;
        padding: 12px 0;
        margin-left: 16px;
        border-bottom: none;
        width: 100%;
    }

    .nav-list li a {
        color: #222;
        font-size: 20px;
        padding-left: 4px;
        display: inline-block;
    }

    .nav-list > li { margin-bottom: 10px; }

    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.55);
        z-index: 100008;
        transition: opacity 260ms ease;
        opacity: 0;
    }
    body.nav-open .nav-backdrop {
        display: block;
        opacity: 1;
    }

    .menu-toggle { display: inline-flex; z-index: 100011; }
    .menu-toggle .icon { display: inline-flex; transition: transform 260ms ease, opacity 200ms ease; }
    .menu-toggle .icon-close { opacity: 0; transform: rotate(0deg) scale(0.8); }
    .menu-toggle.open .icon-close { opacity: 1; transform: rotate(0deg) scale(1); }
    .menu-toggle.open .icon-menu { opacity: 0; transform: rotate(-20deg) scale(0.8); }

    .search-toggle-wrapper svg,
    .menu-toggle svg { color: var(--orange-color); }

    .component h1 { font-size: 44px; line-height: 1.08; }
    .component h2 { font-size: 32px; line-height: 1.18; }
    .component h3 { font-size: 22px; line-height: 1.25; }
    .component h4 { font-size: 17px; line-height: 1.3; }
    .component p  { font-size: 16px; line-height: 1.6; }

    .usp-section {
        h3 {
            font-size: 18px;
        }
    }

    .cta-content {
        h2 {
            font-size: 26px;
        }
    }

     .form-holder {
        h2 {
            font-size: 20px;
        }
    }
}

@media only screen and (max-width: 959px) {
    .hero-section .uk-grid.hero-content  {
        .hero-intro {
            padding-left: 0;
        }
        
    }
    .usp-item {
        border-right: 2px solid rgba(196, 196, 196, 0.5);
        border-bottom: 2px solid rgba(196, 196, 196, 0.5);
    }
    .usp-item:nth-child(2n) {
        border-right: none;
    }
    .usp-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
   
    .cta-content {
        h2 {
            font-size: 26px;
        }
        .logo-container {
            display: none;
        }
    }

    .begeleiding-cta-section {
        .cta-button {
           margin-left: 198px;
        }
    }
    
}

@media only screen and (max-width: 767px) {
    .topbar {
        display: none;
    }
    .container {
        padding: 0 20px;
    }
    .component {
        padding: 20px 0;
    }
    .hero-image img {
        padding: 0;
        max-height: 400px;
    }
    .site-logo img {
        max-width: 150px;
        height: auto;
    }
    .hero-section .uk-grid.hero-content  {
        .hero-intro {
            max-width: 540px;
        }
        
    }

    .component h1 { font-size: 36px; line-height: 1.05; }
    .component h2 { font-size: 28px; line-height: 1.15; }
    .component h3 { font-size: 20px; line-height: 1.2; }
    .component h4 { font-size: 16px; line-height: 1.25; }
    .component p  { font-size: 14px; line-height: 1.6; }
    .usp-section {
        h3 {
            font-size: 17px;
        }
    }

    .cta-content {
        h2 {
            font-size: 24px;
        }
        .cta-text {
            padding: 0 20px;
        }
    }
    
    .begeleiding-cta-section {
        ::before {
            display: none;
        }
        
        .text-holder {
            padding-left: 0;
            margin: 0 auto;
            text-align: center;
            h2 {
                font-size: 26px;
            }
            max-width: 80%;
        }
        .cta-button {
            margin: 0 auto;
            a { 
                padding: 10px 20px;
            }
        }
        .container {
            max-width: 75%;
            padding-right: 0;
            
        }
    }

   .timeline-container {
        flex-direction: column;
        margin-top: 40px;
        gap: 60px; 
    }

    .timeline-item {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .timeline-item h3 {
        min-height: auto;
        margin-bottom: 10px;
    }

    .step-line {
        display: none;
    }

    .step-number {
        position: relative;
        margin-bottom: 20px;
    }

    .timeline-item:not(:last-child) .step-number::after {
        content: '';
        position: absolute;
        top: 141px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 60px; 
        background: repeating-linear-gradient(to bottom, var(--orange-color) 0, var(--orange-color) 5px, transparent 5px, transparent 10px);
        z-index: -1;
    }
    
    .vision-quote p {
        font-size: 16px !important;
    }
    .vision-quote::before {
        top: -48px;
        font-size: 70px;
    }

     .form-holder {
        padding: 40px 20px;
        h2 {
            font-size: 22px;
        }
    }
}

@media only screen and (max-width: 639px) {
    .usp-item {
        border-right: none !important;
        border-bottom: 2px solid rgba(196, 196, 196, 0.5) !important;
    }

    .usp-item:last-child {
        border-bottom: none !important;
    }
    .footer-logos {
        padding: 24px 12px !important;
    }
    .kpz-logo {
        width: auto !important;
        max-width: 260px !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }
    .kpz-logo img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}
@media only screen and (max-width: 400px) {
    .hero-text {
        h2 {
            font-size: 26px;
        }
    }
    .hero-intro {
            max-width: 340px;
    }
    .hero-image img {
        padding: 0;
        max-height: 350px;
    }

    .cta-content {
        h2 {
            font-size: 22px;
        }
    }
    .begeleiding-hero {
        min-height: 45vh;
        background-position: 42% center;
        padding: 30px 12px;
    }
    .begeleiding-hero h1 {
        font-size: 32px;
    }

    .timeline-item:not(:last-child) .step-number::after {
        display: none !important;
    }

    .timeline-container {
        gap: 30px;
    }
}
