:root {
            --primary-blue: #0b5ed7;
            --primary-hover: #0a4ebd;
            --whatsapp-green: #25d366;
            --whatsapp-hover: #20ba5a;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --bg-gradient: radial-gradient(circle at 10% 20%, rgba(242, 246, 253, 1) 0%, rgba(255, 255, 255, 1) 90%);
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            color: var(--text-dark);
            background: var(--bg-gradient);
            overflow-x: hidden;
        }

        /* --- NAVBAR (TRANSPARANT & FIXED) --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8%;
            background-color: rgba(255, 255, 255, 0);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.85);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            background-color: var(--primary-blue);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .logo-text {
            font-weight: 700;
            font-size: 20px;
            color: #0f172a;
        }

        .logo-text span {
            display: block;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            font-weight: 500;
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-blue);
        }

        .nav-links a.active {
            background-color: #eff6ff;
            padding: 8px 16px;
            border-radius: 20px;
            color: var(--primary-blue);
        }

        .nav-btn {
            background-color: var(--primary-blue);
            color: white !important;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600 !important;
            transition: background-color 0.2s;
        }

        .nav-btn:hover {
            background-color: var(--primary-hover);
        }

        /* --- NEW HERO SECTION (HOMEPAGE STYLE) --- */
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 160px 8% 80px 8%;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: center;
        }

        /* Breadcrumb Styling */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 15px;
            font-weight: 500;
        }

        .breadcrumb a {
            text-decoration: none;
            color: var(--text-muted);
            transition: color 0.2s;
        }

        .breadcrumb a:hover {
            color: var(--primary-blue);
        }

        .breadcrumb i {
            font-size: 10px;
            color: #cbd5e1;
        }

        .breadcrumb span {
            color: var(--text-dark);
            font-weight: 600;
        }

        .section-tag {
            color: var(--primary-blue);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: block;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 54px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            color: #0f172a;
        }

        .hero-title span {
            color: var(--primary-blue);
        }

        .hero-description {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 35px;
            max-width: 540px;
        }

        .btn-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-blue {
            background-color: var(--primary-blue);
            color: white;
        }

        .btn-blue:hover {
            background-color: var(--primary-hover);
        }

        .btn-whatsapp {
            background-color: var(--whatsapp-green);
            color: white;
        }

        .btn-whatsapp:hover {
            background-color: var(--whatsapp-hover);
        }

        /* Hero Right (Image) */
        .image-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .main-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            object-fit: cover;
        }


        /* --- TOP 5 STORINGEN SECTION --- */
        .faq-section {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0px 8% 120px 8%;
        }

        .faq-intro-tag {
            color: #b91c1c;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: block;
            margin-bottom: 10px;
            text-align: center;
        }

        .faq-section-title {
            font-size: 36px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
            text-align: center;
        }

        .faq-section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 40px;
            text-align: center;
        }

        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: white;
            border-radius: 14px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            overflow: hidden;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .faq-item:hover {
            border-color: #cbd5e1;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
        }

        .faq-trigger {
            width: 100%;
            background: none;
            border: none;
            padding: 22px 28px;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            outline: none;
        }

        .faq-title-block {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .faq-icon-box {
            background-color: #fef2f2;
            color: #ef4444;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 14px;
        }

        .faq-question-wrapper {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .faq-question {
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
        }

        .faq-meta-text {
            font-size: 13px;
            color: var(--text-muted);
        }

        .faq-arrow {
            font-size: 14px;
            color: var(--text-muted);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-body {
            padding: 0 28px 24px 80px;
            font-size: 14px;
            color: #334155;
            line-height: 1.6;
            border-top: 1px solid #f1f5f9;
            padding-top: 20px;
        }

        .faq-solution-box {
            margin-top: 15px;
            background-color: #f8fafc;
            border-radius: 10px;
            padding: 16px 20px;
            display: flex;
            gap: 12px;
            align-items: start;
            color: #1e293b;
            border: 1px dashed #e2e8f0;
        }

        .faq-solution-box i {
            color: var(--primary-blue);
            font-size: 16px;
            margin-top: 3px;
        }

        /* Active / Open staat */
        .faq-item.active {
            border-color: #cbd5e1;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
        }

        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
            color: var(--primary-blue);
        }


        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                padding-top: 120px;
                text-align: center;
            }
            .breadcrumb {
                justify-content: center;
            }
            .hero-description {
                margin: 0 auto 35px auto;
            }
            .btn-group {
                justify-content: center;
            }
            .image-wrapper {
                margin-top: 40px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 38px;
            }
            .faq-body {
                padding: 20px;
            }
            .faq-trigger {
                padding: 16px;
            }
        }
        
        
.spoed-card {
            position: absolute;
            left: -20px;
            bottom: 40px;
            background-color: var(--primary-blue);
            color: white;
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            text-decoration: none;
            transition: transform 0.1s;
            overflow: hidden; 
            z-index: 10;
        }
:root {
            --primary-blue: #0b5ed7;
            --primary-hover: #0a4ebd;
            --whatsapp-green: #25d366;
            --whatsapp-hover: #20ba5a;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --bg-gradient: radial-gradient(circle at 10% 20%, rgba(242, 246, 253, 1) 0%, rgba(255, 255, 255, 1) 90%);
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            color: var(--text-dark);
            background: var(--bg-gradient);
            overflow-x: hidden;
        }

        /* --- NAVBAR (TRANSPARANT & FIXED) --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8%;
            background-color: rgba(255, 255, 255, 0);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.85);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            background-color: var(--primary-blue);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .logo-text {
            font-weight: 700;
            font-size: 20px;
            color: #0f172a;
        }

        .logo-text span {
            display: block;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            font-weight: 500;
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-blue);
        }

        .nav-links a.active {
            background-color: #eff6ff;
            padding: 8px 16px;
            border-radius: 20px;
            color: var(--primary-blue);
        }

        .nav-btn {
            background-color: var(--primary-blue);
            color: white !important;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600 !important;
            transition: background-color 0.2s;
        }

        .nav-btn:hover {
            background-color: var(--primary-hover);
        }

        /* --- NEW HERO SECTION (HOMEPAGE STYLE) --- */
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 160px 8% 80px 8%;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: center;
        }

        /* Breadcrumb Styling */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 15px;
            font-weight: 500;
        }

        .breadcrumb a {
            text-decoration: none;
            color: var(--text-muted);
            transition: color 0.2s;
        }

        .breadcrumb a:hover {
            color: var(--primary-blue);
        }

        .breadcrumb i {
            font-size: 10px;
            color: #cbd5e1;
        }

        .breadcrumb span {
            color: var(--text-dark);
            font-weight: 600;
        }

        .section-tag {
            color: var(--primary-blue);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: block;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 54px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            color: #0f172a;
        }

        .hero-title span {
            color: var(--primary-blue);
        }

        .hero-description {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 35px;
            max-width: 540px;
        }

        .btn-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-blue {
            background-color: var(--primary-blue);
            color: white;
        }

        .btn-blue:hover {
            background-color: var(--primary-hover);
        }

        .btn-whatsapp {
            background-color: var(--whatsapp-green);
            color: white;
        }

        .btn-whatsapp:hover {
            background-color: var(--whatsapp-hover);
        }

        /* Hero Right (Image) */
        .image-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .main-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            object-fit: cover;
        }

/* --- GECORRIGEERD: CSS voor de Footer met Watergolven --- */
    #footer {
        position: relative;
        background: #1e3a8a; /* Diepblauw passend bij de huisstijl */
        color: #ffffff;
        padding: 80px 0 20px 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
        margin-top: 60px; /* Ruimte voor de golven boven de footer */
    }

    /* Golf animatie container */
    #footer .waves-container {
        position: absolute;
        top: -60px; /* Duwt de golven net boven de donkere rand */
        left: 0;
        width: 100%;
        height: 60px;
        overflow: hidden;
        line-height: 0;
    }

    #footer .waves {
        position: relative;
        width: 100%;
        height: 100%;
    }

    #footer .wave-parallax > use {
        animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
    }
    
    /* We gebruiken nu witte golven met variërende transparantie. 
       Hierdoor rollen ze mooi over ELKE achtergrondkleur van de pagina zelf! */
    #footer .wave-parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
        fill: rgba(255, 255, 255, 0.3);
    }
    #footer .wave-parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
        fill: rgba(255, 255, 255, 0.5);
    }
    #footer .wave-parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
        fill: rgba(255, 255, 255, 0.2);
    }
    /* De voorste golf krijgt exact de kleur van de footer zelf voor een vloeiende overgang */
    #footer .wave-parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
        fill: #1e3a8a;
    }

    @keyframes move-forever {
        0% { transform: translate3d(-90px,0,0); }
        100% { transform: translate3d(85px,0,0); }
    }

    /* Footer inhoud layout */
    #footer .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }

    #footer .footer-brand h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    #footer .footer-brand span {
        color: #3b82f6; /* Accent blauw */
        display: block;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        margin-top: -5px;
        margin-bottom: 15px;
    }
    #footer .footer-brand p {
        font-size: 14px;
        line-height: 1.6;
        color: #93c5fd;
    }

    #footer .footer-links h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 20px;
        position: relative;
    }
    #footer .footer-links h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 30px;
        height: 2px;
        background-color: #3b82f6;
    }
    #footer .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    #footer .footer-links li {
        margin-bottom: 12px;
    }
    #footer .footer-links a {
        color: #93c5fd;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }
    #footer .footer-links a:hover {
        color: #ffffff;
        padding-left: 5px;
    }

    #footer .footer-bottom {
        max-width: 1200px;
        margin: 40px auto 0 auto;
        padding: 20px 20px 0 20px;
        border-top: 1px solid rgba(147, 197, 253, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        font-size: 13px;
        color: #93c5fd;
    }
    #footer .footer-bottom a {
        color: #93c5fd;
        text-decoration: none;
    }
    #footer .footer-bottom a:hover {
        color: #ffffff;
    }

    @media (max-width: 768px) {
        #footer {
            padding-top: 60px;
            margin-top: 40px;
        }
        #footer .waves-container {
            height: 40px;
            top: -40px;
        }
        #footer .footer-container {
            gap: 30px;
        }
        #footer .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }
    }
    
    
/* Compacte en strakke tegels (3 of 4 per regel) */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            max-width: 1600px;
            margin: 40px auto 0 auto;
            padding: 0 20px;
        }

        /* Responsieve media queries voor exact 3 of 4 per regel op grotere schermen */
        @media (min-width: 768px) and (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1025px) {
            .services-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .service-tile {
            display: flex;
            flex-direction: column;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: #1a1a1a;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eef2f5;
        }

        .service-tile:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            color: red;
        }
        .service-tile:hover i{
            color: blue;
        }
        .tile-image-wrapper {
            background: #f8fafc;
            height: 130px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-bottom: 1px solid #eef2f5;
        }

        .tile-icon {
            font-size: 2.5rem;
            color: #0066ff;
        }

        .tile-content {
            padding: 18px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .tile-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            margin: 0 0 6px 0;
        }

        .tile-seo-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.88rem;
            color: #666666;
            margin: 0 0 16px 0;
            line-height: 1.4;
            flex-grow: 1;
        }

        .tile-link {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            color: #0066ff;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s ease;
            margin-top: auto;
        }

        .service-tile:hover .tile-link {
            gap: 10px;
        }

        /* --- NIEUW: Info panelen styling (2 kolommen onder de tegels) --- --> */
        .info-panels-section {
            max-width: 1200px;
            margin: 50px auto 60px auto;
            padding: 0 20px;
        }

        .info-panels-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }

        @media (min-width: 768px) {
            .info-panels-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 gelijke vakken op 1 regel vanaf tablet/desktop */
            }
        }

        .info-panel {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px;
            border: 1px solid #eef2f5;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .panel-icon-box {
            background: rgba(0, 102, 255, 0.06);
            color: #0066ff;
            width: 54px;
            height: 54px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* Accentkleur voor levering indien gewenst, of houd blauw voor consistentie */
        .info-panel:last-child .panel-icon-box {
            background: rgba(46, 204, 113, 0.06);
            color: #2ecc71;
        }

        .panel-text-block {
            display: flex;
            flex-direction: column;
        }

        .panel-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 0 10px 0;
            color: #1a1a1a;
        }

        .panel-description {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.95rem;
            color: #555555;
            line-height: 1.6;
            margin: 0;
        }
        
        
        /* --- TOP 5 STORINGEN SECTION --- */
        .faq-section {
            max-width: 1000px;
            margin: 0 auto;
            padding: 60px 8% 120px 8%;
        }

        .faq-intro-tag {
            color: #b91c1c;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: block;
            margin-bottom: 10px;
            text-align: center;
        }

        .faq-section-title {
            font-size: 36px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
            text-align: center;
        }

        .faq-section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 40px;
            text-align: center;
        }

        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: white;
            border-radius: 14px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            overflow: hidden;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .faq-item:hover {
            border-color: #cbd5e1;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
        }

        .faq-trigger {
            width: 100%;
            background: none;
            border: none;
            padding: 22px 28px;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            outline: none;
        }

        .faq-title-block {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .faq-icon-box {
            background-color: #fef2f2;
            color: #ef4444;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 14px;
        }

        .faq-question-wrapper {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .faq-question {
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
        }

        .faq-meta-text {
            font-size: 13px;
            color: var(--text-muted);
        }

        .faq-arrow {
            font-size: 14px;
            color: var(--text-muted);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-body {
            padding: 0 28px 24px 80px;
            font-size: 14px;
            color: #334155;
            line-height: 1.6;
            border-top: 1px solid #f1f5f9;
            padding-top: 20px;
        }

        .faq-solution-box {
            margin-top: 15px;
            background-color: #f8fafc;
            border-radius: 10px;
            padding: 16px 20px;
            display: flex;
            gap: 12px;
            align-items: start;
            color: #1e293b;
            border: 1px dashed #e2e8f0;
        }

        .faq-solution-box i {
            color: var(--primary-blue);
            font-size: 16px;
            margin-top: 3px;
        }

        /* Active / Open staat */
        .faq-item.active {
            border-color: #cbd5e1;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
        }

        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
            color: var(--primary-blue);
        }


        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                padding-top: 120px;
                text-align: center;
            }
            .breadcrumb {
                justify-content: center;
            }
            .hero-description {
                margin: 0 auto 35px auto;
            }
            .btn-group {
                justify-content: center;
            }
            .image-wrapper {
                margin-top: 40px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 38px;
            }
            .faq-body {
                padding: 20px;
            }
            .faq-trigger {
                padding: 16px;
            }
        }      
        

/* Zorg dat het hoofd-item de basis is voor de positionering van het submenu */
.nav-links li.dropdown {
    position: relative;
}

/* Standaard staat het submenu verborgen */
/* Standaard staat het submenu verborgen */
.nav-links .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    
    /* Wit met 80% dekking */
    background-color: rgba(255, 255, 255, 0.8); 
    
    /* Extra tip: voeg dit toe voor een mooi modern 'glass' effect */
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px); /* Voor Safari */

    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
    padding: 10px 0;
    list-style: none;
    border-radius: 4px;
}
/* De links in het submenu onder elkaar tonen */
.nav-links .submenu li {
    width: 100%;
}

.nav-links .submenu li a {
    display: block;
    padding: 10px 20px;
    color: #333333;
    text-decoration: none;
}

/* Kleurverandering bij het hooveren over een submenu-item */
.nav-links .submenu li a:hover {
    background-color: #f5f5f5; 
}

/* DE MAGIE: Toon het submenu als je met de muis over 'Diensten' beweegt */
.nav-links li.dropdown:hover .submenu {
    display: block;
}

/* Optioneel: een klein pijltje naast Diensten */
.arrow {
    font-size: 0.8em;
    margin-left: 5px;
    display: inline-block;
}