/* filepath: /Users/cxnq/Downloads/bicetral_laravel 2/public/css/style.css */
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* Fluent-like font stack */
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, #fdfdff 0%, #f8f9fa 100%);
    min-height: 100vh;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.75);
    padding: 1rem 0;
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    /* Zichtbaar op desktop */
    align-items: center;
    gap: 1.5rem;
}

.desktop-nav {
    /* Stijl voor desktop nav */
}

.hamburger-button {
    display: none;
    /* Verborgen op desktop */
    background: none;
    border: none;
    color: #333;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    /* Verborgen op desktop */
    /* Reset styles die alleen voor mobiel gelden */
    position: static;
    width: auto;
    height: auto;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    z-index: auto;
    transition: none;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #444;
    /* Dark grey */
}

.logo img {
    height: 45px;
    /* Increased height, adjust as needed */
    margin-right: 0.5rem;

}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    /* Medium grey */
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff;
    /* Example hover color */
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border: 1px solid transparent;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.08);
}

.login-button {
    background-color: #76b852;
    /* Green color from image */
    color: white;
    border-color: #76b852;
}

.login-button:hover {
    background-color: #6aa647;
    /* Darker green */
    border-color: #6aa647;
}

/* Hero Section Styles */
.hero {
    padding: 4rem 0;
    text-align: left;
    /* Add the blurred background effect */
    position: relative;
    overflow: hidden;
    /* Needed for pseudo-element */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(200, 230, 255, 0.6) 0%, rgba(230, 255, 230, 0.4) 70%, transparent 100%);
    filter: blur(80px);
    /* Adjust blur intensity */
    z-index: -1;
    /* Place behind content */
    transform: scale(1.5);
    /* Make it larger to cover edges */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    /* Ensure content is above pseudo-element */
    z-index: 1;
}

.hero-text {
    flex-basis: 50%;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    /* Bolder */
    color: #3b4b5a;
    /* Dark greyish-blue */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 600;
    /* Maak dikker/vet */
}

.hero-buttons .button {
    margin-right: 1rem;
    margin-bottom: 1rem;
    /* For stacking on small screens */
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.contact-button,
.login-hero-button,
.demo-button,
.info-button {
    background-color: #76b852;
    /* Green color */
    color: white;
    border-color: #76b852;
    margin-top: 1rem;
    /* Add some space above button */
}

.contact-button:hover,
.login-hero-button:hover,
.demo-button:hover,
.info-button:hover {
    background-color: #6aa647;
    /* Darker green */
    border-color: #6aa647;
}

.hero-image {
    flex-basis: 45%;
    text-align: center;
    /* Center image within its container */
    position: relative;
    /* Nodig voor absolute positionering van puntjes */
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Remove extra space below image */
    margin: 0 auto;
    /* Verwijder placeholder stijlen specifiek voor hero image */
    /* border: 1px dashed #ccc; */
    /* padding: 2rem; */
    /* background-color: #eee; */
}

/* Carousel Dots Styles */
.carousel-dots {
    position: absolute;
    right: -40px;
    /* Plaats rechts van de laptop, pas aan indien nodig */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Ruimte tussen de puntjes */
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #555;
    /* Kleur inactief puntje */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot:hover {
    background-color: #777;
}

.dot.active {
    background-color: #6aa647;
}

/* General Section Styling */
section {
    padding: 4rem 0;
}

.section-tag {
    display: inline-block;
    background-color: rgba(118, 184, 82, 0.1);
    /* Light green background */
    color: #6aa647;
    /* Darker green text */
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.text-center {
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    color: #3b4b5a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.alt-bg {
    /* Vervang subtiele gradient door een heel lichtgrijze tint voor duidelijker contrast */
    /* background: linear-gradient(180deg, #ffffff 0%, #fdfdff 100%); */
    background-color: #f8f9fa;
    /* Heel lichtgrijs, consistent met body start */
}

/* Info Section Styles (Wat is / Voor wie / Interface) */
.info-section .container,
.info-section .info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.info-section.alt-bg .info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.info-text {
    flex-basis: 45%;
    /* Maak tekst iets smaller */
}

/* Forceer row layout voor Wat is Bicentral sectie */
#wat-is-bicentral-section.container {
    display: flex !important;
    /* Zekerstellen dat flex actief is */
    flex-direction: row !important;
    /* Zekerstellen dat het naast elkaar staat */
    align-items: center;
    /* Verticaal centreren */
    gap: 2rem;
    /* Iets kleinere gap om wrapping te voorkomen */
}

/* Specifieke verhoudingen voor Wat is Bicentral sectie */
#wat-is-bicentral-section .info-text {
    flex-basis: 65%;
    /* Geef tekst nog meer ruimte */
}

#wat-is-bicentral-section .info-image {
    flex-basis: 30%;
    /* Geef afbeelding nog minder ruimte */
    /* border: 2px solid red; */
    /* Verwijder tijdelijke rand */
}

/* Verklein de afbeelding zelf binnen deze sectie */
#wat-is-bicentral-section .info-image img {
    /* max-width: 400px; */
    /* Maak groter */
    max-width: 500px;
    height: auto;
    transition: transform 0.3s ease;
    /* Toevoegen voor soepele overgang */
}

/* Zorg dat afbeelding binnen trigger block is voor betere centering */
#video-trigger img {
    display: block;
}

/* Hover effect voor de afbeelding in Wat is sectie */
#wat-is-bicentral-section .info-image img:hover {
    transform: scale(1.05);
    /* Maak iets groter op hover */
}

/* Specifiek voor de paragraaf in Wat is Bicentral sectie */
#wat-is-bicentral-section .info-text p {
    max-width: 65ch;
    /* Beperk breedte tot ca. 65 karakters */
}

.info-text h2 {
    margin-bottom: 1rem;
}

.info-text p {
    color: #555;
    margin-bottom: 1.5rem;
}

.info-image {
    flex-basis: 50%;
    /* Geef afbeelding iets meer ruimte */
    text-align: center;
}

.info-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    /* Verwijder eventuele overgebleven placeholder stijlen */
    /* border: 1px dashed #ccc; */
    /* padding: 2rem; */
    /* background-color: #eee; */
}

.info-section .reverse {
    flex-direction: row-reverse;
}

/* Stats Styles */
.stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.stats div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #555;
}

.stats strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b4b5a;
}

.stat-icon {
    font-size: 1.2rem;
    /* Adjust as needed */
    margin-bottom: 0.3rem;
    /* Basic styling for placeholder */
    color: #76b852;
}

/* Features Section Styles */
.features-section h2 .logo-inline {
    display: inline-flex;
    /* Use flex for alignment */
    align-items: center;
    /* Align items to center vertically */
    font-size: inherit;
    font-weight: bold;
    color: #444;
}

.features-section h2 .logo-inline img {
    /* max-height: 1.4em; */
    max-height: 1.4em;
    width: auto;
    /* Verwijder oude alignment methoden */
    /* vertical-align: text-bottom; */
    /* position: relative; */
    /* top: 12px; */
    /* display: inline-block; */
    /* Nu overbodig door inline-flex parent */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.0rem;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    /* Keep image corners rounded */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0, 0, 0, 0.06);
}

.feature-card img {
    width: 100%;
    height: auto;
    display: block;
    /* Placeholder style */
    aspect-ratio: 16 / 9;
    background-color: #eee;
    border-bottom: 1px solid #eee;
}

.feature-card p {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #3b4b5a;
}

/* Steps Section Styles */
.steps-section {
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.step-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    /* Behoud relatieve positionering */
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0, 0, 0, 0.06);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
    /* Blauwe gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    /* Absoluut t.o.v. .step-card */
    top: 0;
    /* Begin aan de bovenrand */
    left: 50%;
    /* Horizontaal midden */
    transform: translate(-50%, -50%);
    /* Schuif helft breedte links, helft hoogte omhoog */
    box-shadow: 0 4px 8px rgba(102, 166, 255, 0.3);
    z-index: 2;
}

/* Nieuwe regel voor IMG iconen binnen de cirkel */
/* .step-icon img {
    max-width: 60%;
    max-height: 60%;
    height: auto;
} */

/* Stijl voor Font Awesome iconen (<i>) binnen de cirkel */
.step-icon i {
    font-size: 1.8rem;
    /* Grootte van het icoon */
    color: white;
    /* Kleur van het icoon */
}

.step-card h3 {
    font-size: 1.6rem;
    color: #3b4b5a;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #555;
    font-size: 1rem;
}

/* --- Nieuwe Footer Styles --- */
footer {
    background-color: #ffffff;
    /* Zet terug naar wit */
    padding: 3rem 0 0 0;
    /* Padding boven, geen onder */
    border-top: 1px solid #dee2e6;
    /* Subtiele rand */
    color: #6c757d;
    /* Donkerdere grijze tekst */
    font-size: 0.9rem;
}

.footer-content-new {
    display: grid;
    /* Grid: 1fr voor logo/contact, dan auto voor link kolommen */
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2.5rem;
    padding-bottom: 3rem;
    align-items: start;
    /* Lijn kolommen bovenaan uit */
}

.footer-col-left {
    /* Kolom voor logo, contact, socials */
}

.footer-col-left .footer-logo img {
    max-height: 40px;
    /* Pas logo grootte aan indien nodig */
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.footer-contact p strong {
    color: #495057;
    /* Iets donkerder voor labels */
}

.footer-socials {
    margin-top: 1.5rem;
}

.footer-socials h4 {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.footer-socials a {
    display: inline-block;
    margin-right: 0.8rem;
    color: #6c757d;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #76b852;
    /* Groene hover kleur */
}

.footer-col-links h4 {
    font-size: 1.1rem;
    color: #343a40;
    /* Donkerdere header */
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-links ul li {
    margin-bottom: 0.6rem;
}

.footer-col-links ul li a {
    text-decoration: none;
    color: #6c757d;
    transition: color 0.3s ease;
}

.footer-col-links ul li a:hover {
    color: #76b852;
}

/* Onderste balk */
.footer-bottom-new {
    background-color: #e9ecef;
    /* Iets donkerdere achtergrond */
    padding: 1rem 0;
    border-top: 1px solid #dee2e6;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Wrap op kleine schermen */
    gap: 0.5rem;
}

.footer-legal a {
    color: #6c757d;
    text-decoration: none;
    margin-right: 1.5rem;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:last-child {
    margin-right: 0;
}

.footer-legal a:hover {
    color: #343a40;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: #6c757d;
}

.footer-copyright-links p a {
    text-decoration: none;
    color: #6c757d;
    transition: color 0.3s ease;
}

.footer-copyright-links p a:hover {
    color: #76b852;
}

/* Back to top knop */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #343a40;
    /* Donkere knop */
    color: #fff;
    border: none;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    line-height: 40px;
    /* Verticaal centreren */
    text-align: center;
    cursor: pointer;
    opacity: 0;
    /* Start verborgen */
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #495057;
    /* Iets lichter bij hover */
}

/* --- Einde Nieuwe Footer Styles --- */

/* Responsive adjustments */
@media (max-width: 992px) {

    /* Herstel responsive stacking */
    section.info-section.container:not(#wat-is-bicentral-section) {
        flex-direction: column;
        text-align: center;
    }

    /* Herstel responsive stacking */
    .info-section.alt-bg .info-content {
        flex-direction: column;
        text-align: center;
    }

    .info-section .reverse {
        flex-direction: column;
        /* Keep image below text for reversed sections */
        gap: 0.5rem;
    }

    .stats {
        justify-content: center;
    }

    .stats div {
        align-items: center;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header-right {
        display: none;
        /* Verberg desktop elementen */
    }

    .hamburger-button {
        display: block;
        /* Toon hamburger */
    }

    .mobile-nav {
        /* Verberg met visibility en opacity */
        display: block;
        /* Houd block zodat visibility werkt */
        position: fixed;
        top: 0;
        right: 0;
        /* Kan nu op 0 blijven staan */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        /* Gebruik viewport height unit */
        background-color: #fff !important;
        /* Forceer witte achtergrond */
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        padding: 4rem 2rem 2rem 2rem;
        /* Transition alleen op opacity */
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        opacity: 0;
        /* Start onzichtbaar */
        visibility: hidden;
        /* Start verborgen */
        /* Verwijder 'right' uit transition */
    }

    .mobile-nav.open {
        /* Toon menu door opacity en visibility aan te passen */
        opacity: 1;
        visibility: visible;
        /* right: 0; <-- Niet meer nodig */
    }

    .mobile-close-button {
        /* Stijl voor de sluitknop (X) */
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 2rem;
        color: #888;
        /* Grijze kleur voor X */
        cursor: pointer;
        line-height: 1;
        /* Zorg voor goede uitlijning */
    }

    .mobile-close-button:hover {
        color: #333;
        /* Donkerder bij hover */
    }

    .mobile-nav ul {
        /* Mobiele lijst styles */
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav ul li {
        /* Mobiele lijst item styles */
        margin-bottom: 1.5rem;
    }

    .mobile-nav ul li a {
        /* Mobiele link styles */
        text-decoration: none;
        color: #333;
        font-size: 1.2rem;
        font-weight: 500;
        display: block;
    }

    .mobile-nav ul li a.login-button {
        /* Mobiele login knop styles */
        padding: 0.7rem 1.5rem;
        margin-top: 1rem;
        text-align: center;
        color: #ffffff !important;
        /* Forceer witte tekstkleur */
        /* Behoud achtergrondkleur van .login-button */
        background-color: #76b852;
        /* Zeker stellen */
        border-color: #76b852;
        /* Zeker stellen */
    }

    .login-button {
        align-self: flex-start;
        /* Align button left */
        margin-top: 1rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 2rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        /* Adjusted size */
    }

    .hero-buttons .button {
        margin: 0.5rem 0.25rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        /* Stack footer columns */
        text-align: center;
    }

    .footer-logo {
        order: -1;
        /* Move logo to top */
    }

    .footer-links ul {
        padding-left: 0;
        /* Remove indent */
    }

    .footer-newsletter form {
        justify-content: center;
        max-width: 300px;
        margin: 0.5rem auto 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Responsive layout for Wat is Bicentral section */
    #wat-is-bicentral-section.container {
        flex-direction: column !important;
        /* Forceer stacking */
        text-align: center;
        gap: 2rem;
    }

    #wat-is-bicentral-section .info-text,
    #wat-is-bicentral-section .info-image {
        flex-basis: 100% !important;
        /* Forceer full width */
        max-width: 100%;
        text-align: center;
    }

    #wat-is-bicentral-section .info-image img {
        margin: 0 auto;
        max-width: 90%;
        /* Image not too wide */
        height: auto;
        /* Let height adjust */
    }

    #wat-is-bicentral-section .play-icon-overlay {
        /* Correct centering for mobile */
        transform: translate(-50%, -50%);
        /* Center properly */
        /* Verwijder de grote negatieve top verschuiving */
    }

    #wat-is-bicentral-section .info-text p {
        text-align: left;
        /* Keep paragraph text left-aligned */
        max-width: none;
        /* Remove desktop width limit */
    }

    #wat-is-bicentral-section .stats {
        justify-content: center;
        /* Center the stats icons/text */
    }

    #wat-is-bicentral-section .button.info-button {
        margin-left: auto;
        /* Center button */
        margin-right: auto;
        display: inline-block;
        /* Ensure margin auto works */
    }

    /* Responsive layout for Voor wie is Bicentral section */
    #voor-wie-section .info-content {
        /* Target specific container */
        flex-direction: column;
        /* Stack text and image */
        text-align: center;
        gap: 2rem;
    }

    #voor-wie-section .info-text,
    #voor-wie-section .info-image {
        flex-basis: 100%;
        /* Make text and image take full width */
        max-width: 100%;
        text-align: center;
    }

    /* Override desktop carousel image positioning for mobile */
    #voor-wie-section .carousel-image,
    #voor-wie-section .carousel-image.prev,
    #voor-wie-section .carousel-image.next {
        width: 90%;
        /* Make image slightly smaller than container */
        height: auto;
        /* Adjust height automatically */
        max-width: 90%;
        left: 5%;
        /* Center the image */
        top: 0;
        transform: none;
        /* Remove desktop transforms (translateX, scale, rotate) */
        object-fit: contain;
        /* Ensure full image is visible */
        opacity: 0;
        /* Keep default hidden */
        position: absolute;
        z-index: 1;
        /* Reset z-index */
        /* Transition remains for fade effect */
    }

    #voor-wie-section .carousel-image.active {
        opacity: 1;
        transform: none;
        /* Ensure no transform on active */
        z-index: 2;
        /* Active image on top */
        visibility: visible;
    }

    #voor-wie-section .voor-wie-image-container {
        min-height: 220px;
        /* Adjust container height if needed for mobile */
        overflow: visible;
        /* Zorg dat afbeeldingen niet worden afgeknipt */
        width: 100%;
        position: relative;
        /* Nodig voor absolute positionering van images */
    }

    /* Styles voor mobiele carousel images (alleen actieve tonen) */
    #voor-wie-section .carousel-image,
    #voor-wie-section .carousel-image.prev,
    #voor-wie-section .carousel-image.next {
        width: 90%;
        height: auto;
        max-width: 90%;
        left: 5%;
        top: 0;
        transform: none;
        object-fit: contain;
        opacity: 0;
        position: absolute;
        z-index: 1;
        visibility: hidden;
        /* Extra zekerheid */
        transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    }

    #voor-wie-section .carousel-image.active {
        opacity: 1;
        z-index: 2;
        visibility: visible;
    }

    /* Reposition dots for mobile */
    #voor-wie-section .voor-wie-dots {
        position: static;
        /* Verwijder absolute positionering */
        transform: none;
        /* Verwijder transform */
        flex-direction: row;
        /* Horizontale dots */
        justify-content: center;
        /* Centreer de dots */
        margin-top: 1rem;
        /* Ruimte boven dots */
        padding-bottom: 1rem;
        /* Ruimte onder dots */
    }
}

.netflix-red {
    color: #e50914;
    /* Official Netflix red */
}

/* Nieuwe Carousel Styles voor 'Voor wie' sectie */
.voor-wie-image-container {
    position: relative;
    min-height: 300px;
    /* Geef weer meer verticale ruimte */
    /* overflow: visible; was hier niet nodig, wel op de sectie */
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    perspective: 1000px;
    /* Voeg perspectief toe voor 3D effect */
    cursor: grab;
    /* Default cursor for draggable element */
}

.image-stack.dragging {
    cursor: grabbing;
    /* Cursor during drag */
}

.carousel-image {
    position: absolute;
    top: 0;
    /* Verwijder negatieve top waarde */
    left: 50%;
    width: 70%;
    height: auto;
    max-width: 70%;
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.6) translateX(-50%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1;
    object-fit: contain;
}

.carousel-image.active {
    opacity: 1;
    transform: scale(1) translateX(-50%);
    z-index: 10;
    /* Hoogste laag */
}

.carousel-image.prev {
    opacity: 0.4;
    /* Deels transparant */
    /* Links van het midden, kleiner en iets naar achteren/roteren */
    transform: scale(0.75) translateX(calc(-50% - 50%)) rotateY(30deg);
    z-index: 5;
    /* Tussen verborgen en actief */
}

.carousel-image.next {
    opacity: 0.4;
    /* Deels transparant */
    /* Rechts van het midden, kleiner en iets naar achteren/roteren */
    transform: scale(0.75) translateX(calc(-50% + 50%)) rotateY(-30deg);
    z-index: 5;
    /* Tussen verborgen en actief */
}

/* Optioneel: stijl voor afbeeldingen die 'naar achteren' gaan */
/* Je kunt dit verder uitbreiden met translateX om ze opzij te schuiven */

.voor-wie-dots {
    position: absolute;
    right: -35px;
    /* Pas positie aan */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 20;
    /* Zorg dat dots boven afbeeldingen staan */
}

.dot-voor-wie {
    /* Stijlen worden geërfd van .dot, geen extra nodig tenzij je wilt afwijken */
}

.dot-voor-wie.active {
    background-color: #00bcd4;
    /* Actieve kleur voor deze sectie (match afbeelding) */
}

/* --- Specifieke stijlen voor achtergrond van 'Voor wie' sectie --- */
#voor-wie-section {
    position: relative;
    overflow: hidden;
    /* Behoud hidden om horizontale overflow te voorkomen */
    background-color: transparent;
    /* padding: 8rem 0; Reset naar normale padding? */
    padding: 6rem 0;
}

#voor-wie-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Kopieer gradient en blur van .hero::before */
    background: radial-gradient(circle at center, rgba(220, 240, 255, 0.5) 0%, rgba(230, 255, 240, 0.3) 70%, transparent 100%);
    /* Iets aangepaste kleuren voor variatie? */
    filter: blur(80px);
    z-index: -1;
    /* Achter de content */
    transform: scale(1.5);
    /* Groter maken */
}

/* --- Einde specifieke stijlen --- */

/* --- Video Modal Stijlen --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Donkere overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.modal-overlay.modal-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    width: 90%;
    max-width: 800px;
    /* Max breedte voor video */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    /* Zwarte achtergrond voor iframe */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-hidden {
    /* Standaard verborgen via .modal-overlay */
}

/* Optioneel: Play Icon Overlay */
.play-icon-overlay {
    position: absolute;
    /* Houd absolute */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Correct centering */
    font-size: 2.5rem;
    color: white;
    background-color: #76b852;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 5;
}

#video-trigger:hover .play-icon-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    /* Correct hover centering */
}

/* Pulserende lijnen */
.play-icon-overlay::before,
.play-icon-overlay::after {
    content: '';
    position: absolute;
    left: -2px;
    /* Compensate for border */
    top: -2px;
    /* Compensate for border */
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 50%;
    border: 2px solid #76b852;
    /* Groene lijn */
    opacity: 0;
    /* Pas animatie toe */
    animation: pulse-lines 1.5s infinite ease-out;
    z-index: -1;
    /* Achter de hoofdknop */
}

/* Geef de tweede lijn een vertraging */
.play-icon-overlay::after {
    animation-delay: 0.75s;
}

/* Keyframes voor de animatie */
@keyframes pulse-lines {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        /* Hoe ver de lijn uitdijt */
        opacity: 0;
    }
}

/* --- Einde Video Modal Stijlen --- */

/* --- Image Modal Stijlen --- */

/* Image trigger cursor */
.feature-image-trigger {
    cursor: pointer;
}

/* Aangepaste content styling voor image modal */
.modal-image-content {
    padding: 10px;
    /* Minder padding voor afbeeldingen */
    max-width: 90vw;
    /* Max breedte viewport */
    max-height: 90vh;
    /* Max hoogte viewport */
    width: auto;
    /* Laat breedte bepalen door afbeelding */
    height: auto;
    /* Laat hoogte bepalen door afbeelding */
    background-color: #fff;
    /* Zorg voor witte achtergrond */
}

.modal-image-container {
    display: flex;
    /* Helpt bij centreren */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#modal-image {
    display: block;
    max-width: 100%;
    max-height: calc(90vh - 40px);
    /* Houd rekening met padding/close knop */
    height: auto;
    width: auto;
}

/* --- Einde Image Modal Stijlen --- */

/* --- Einde specifieke stijlen --- */

/* --- Logo Banner Stijlen --- */
.logo-banner {
    padding: 2rem 0;
    background-color: #ffffff;
    /* Of een andere subtiele achtergrond */
    overflow: hidden;
    /* Verberg overflow voor scroll effect */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
    /* Zorg dat er geen ruimte onder is */
}

.logo-scroll-container {
    display: flex;
    width: fit-content;
    /* Zorg dat container breed genoeg is */
    /* animation: scroll-logos 30s linear infinite; */
    /* Verwijder CSS animatie */
    /* We sturen dit nu aan met JS */
}

/* Verwijder hover pauze regel */
/* .logo-banner:hover .logo-scroll-container {
    animation-play-state: paused;
} */

.logo-list {
    display: flex;
    align-items: center;
    /* gap: 3rem; */
    /* Nog kleinere ruimte tussen logo's */
    gap: 2rem;
    padding: 0 2rem;
    /* Ruimte aan zijkanten van de lijst */
    flex-shrink: 0;
    /* Voorkom krimpen van de lijst */
}

.logo-list img {
    max-height: 40px;
    /* Maximale hoogte voor logo's */
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    /* filter: grayscale(1); Optioneel: maak logo's grijs */
}

.logo-list img:hover {
    opacity: 1;
    /* filter: grayscale(0); */
}

/* Verwijder specifieke grootte voor GDS logo */
/* #gds-logo-1,
#gds-logo-2 {
    max-height: 80px !important;
    width: auto !important;
} */

.proud-of-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background-color: #cfff60;
    /* Felgroene kleur uit afbeelding */
    color: #333;
    /* Donkere tekst */
    border-radius: 20px;
    /* Pill shape */
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    /* Voorkom afbreken tekst */
}

.block-scroller {
    display: flex;
    flex-wrap: nowrap;
    width: fit-content;
    /* Width will be determined by content */
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    margin: 20px 0;
    will-change: transform;
}

.block-scroller.scroll-left {
    animation-name: scroll-left;
    /* Left to right */
}

.block-scroller.scroll-right {
    animation-name: scroll-right;
    /* Right to left */
    animation-duration: 45s;
    /* Slightly different speed */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.floating-block {
    flex-shrink: 0;
    margin: 0 15px;
    opacity: 0.7;
    outline: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-block img {
    display: block;
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
        /* Scroll exact één lijst breedte */
    }
}

/* Background blocks positioning */
.background-blocks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
    /* Increased gap between the two rows */
    overflow: hidden;
}

/* Fix for login container positioning */
.background-blocks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    overflow: hidden;
}

/* --- Einde Logo Banner Stijlen --- */

/* --- Login Pagina Achtergrond Stijl (Zwevende Blokken + Fluent Blur) --- */
.login-page-body {
    position: relative;
    overflow: hidden;
    overflow-x: hidden;
    /* Voorkom horizontale scrollbar op body door animatie */
    position: relative;
    /* Nodig voor absolute positionering van achtergrond */
}

/* Fluent Blur Achtergrond (Achterste laag) */
.login-page-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(200, 230, 255, 0.5) 0%, rgba(230, 255, 230, 0.3) 70%, transparent 100%);
    filter: blur(90px);
    z-index: -2;
    /* Achter de zwevende blokken */
    transform: scale(1.5);
}

/* Zwevende Blokken Container (Middelste laag) */
.background-blocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Achter de login content */
    overflow: hidden;
    /* Verberg alles buiten deze container */
    display: flex;
    align-items: center;
    /* Centreer de rijen horizontaal */
    flex-direction: column;
    /* Plaats scrollers onder elkaar */
    justify-content: flex-start;
    /* Lijn bovenaan uit */
    padding-top: 15vh;
    /* Voeg padding toe aan de bovenkant (pas 15vh aan naar wens) */
}

/* --- Einde Login Pagina Stijlen --- */

/* --- Algemene Voorwaarden Pagina Stijlen --- */
.terms-container {
    background-color: #fff;
    padding: 2.5rem 3rem;
    /* Iets meer horizontale padding */
    border-radius: 8px;
    /* Iets subtielere border-radius */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* Subtielere schaduw */
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    /* position: relative; niet meer nodig zonder de achtergrondblokken */
    /* z-index: 1; niet meer nodig */
}

.terms-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
}

.terms-content {
    line-height: 1.8;
    color: #555;
}

.terms-content p {
    margin-bottom: 1.5rem;
}

.terms-content strong {
    color: #333;
}

.terms-content em {
    color: #777;
    font-style: italic;
}

.contact-details-terms {
    display: flex;
    justify-content: space-between;
    /* Verdeelt ruimte tussen de kolommen */
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    /* Lichte scheidingslijn erboven */
}

.address-column {
    width: 48%;
    /* Geef elke kolom iets minder dan de helft voor wat ruimte */
}

.address-column p strong {
    display: block;
    margin-bottom: 0.5rem;
}

.map-container-terms {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    /* Lichte scheidingslijn erboven */
}

.map-container-terms h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

/* --- Einde Algemene Voorwaarden Pagina Stijlen --- */

/* --- Hero Section Styles --- */
.hero {
    /* ... bestaande stijlen ... */
}

/* Laptop afbeelding met animaties */
#laptop-display {
    transition: opacity 0.5s ease-in-out;
    /* Basis transitie voor opacity */
    opacity: 1;
    /* Start zichtbaar */
}

#laptop-display.fade-out {
    opacity: 0;
}

#laptop-display.fade-in {
    opacity: 1;
}

/* Andere hero sectie stijlen... */

/* Keyframe animaties (optioneel voor complexere pop-effecten) */
/*
@keyframes pop-in {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pop-out {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0; }
}

#laptop-display.pop-out {
    animation: pop-out 0.5s ease-out forwards;
}

#laptop-display.pop-in {
    animation: pop-in 0.5s ease-out forwards;
}
*/

/* ... rest van de CSS ... */

/* --- Static Page Body (voor bijv. Algemene Voorwaarden, Privacy) --- */
.static-page-body {
    font-family: 'Poppins', sans-serif;
    /* Of je standaard lettertype */
    background-color: #f4f7f6;
    /* Een lichte, neutrale achtergrond */
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* cursor: url('/img/Custom-Pointer.png'), auto !important;  Verwijder deze regel */
}

/* Eventueel specifieke cursor voor interactieve elementen op deze pagina's */
.static-page-body a,
.static-page-body button {
    /* cursor: url('/img/Custom-Pointer.png'), pointer !important; Verwijder deze regel */
    /* Standaard cursor voor links en knoppen wordt nu weer gebruikt */
}

.static-page-main {
    flex-grow: 1;
    /* Zorgt ervoor dat de main content de beschikbare ruimte vult */
    padding-top: 80px;
    /* Ruimte voor de vaste header (pas aan indien header hoogte anders is) */
    padding-bottom: 40px;
    /* Ruimte onderaan */
}

/* --- Algemene Voorwaarden Pagina Stijlen --- */
.terms-container {
    background-color: #fff;
    padding: 2.5rem 3rem;
    /* Iets meer horizontale padding */
    border-radius: 8px;
    /* Iets subtielere border-radius */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* Subtielere schaduw */
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    /* position: relative; niet meer nodig zonder de achtergrondblokken */
    /* z-index: 1; niet meer nodig */
}

/* ... (rest van .terms-container h2 en .terms-content blijft hetzelfde) ... */

/* Zorg ervoor dat de header van de login pagina (als je die hergebruikt) goed werkt met de nieuwe body */
.login-header {
    /* Als je .login-header gebruikt, zorg dat deze past, bijv. met een achtergrond */
    background-color: #fff;
    /* Witte achtergrond voor de header op static pages */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Lichte schaduw onder header */
    position: fixed;
    /* Maak header vast aan de bovenkant */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Zorg dat header bovenaan blijft */
}

/* ... Einde Algemene Voorwaarden Pagina Stijlen --- */

/* --- Hero Section Styles --- */
/* ... (rest van de CSS) ... */
.marquee {
    display: flex;
    block-size: var(--marquee-item-height);
    margin-block: var(--marquee-item-height);
    mask-image: linear-gradient(to right,
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0));
    --marquee-width: 100%;
    --marquee-height: 150px;
    --marquee-elements: 8;
    --marquee-element-width: 250px;
    --marquee-element-spacing: 15px;
    --marquee-duration: 40s;
    position: relative;
    width: var(--marquee-width);
    height: var(--marquee-height);
    overflow-x: hidden;
    margin: 0;
}

.marquee--8 {
    --marquee-item-width: 250px;
    --marquee-item-height: 150px;
    --marquee-duration: 120s;
    --marquee-items: 8;
}

/* Standard direction marquee items */
.marquee:not(.marquee--reverse) .marquee__item {
    --marquee-item-offset: max(calc(var(--marquee-item-width) * var(--marquee-items)),
            calc(100% + var(--marquee-item-width)));
    --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1);
    position: absolute;
    inset-inline-start: var(--marquee-item-offset);
    transform: translateX(-50%);
    animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
}

/* Reverse direction marquee items */
.marquee--reverse .marquee__item {
    --marquee-item-offset: max(calc(var(--marquee-item-width) * var(--marquee-items)),
            calc(100% + var(--marquee-item-width)));
    --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1);
    position: absolute;
    inset-inline-start: calc(var(--marquee-item-width) * -1);
    transform: translateX(-50%);
    animation: go-reverse linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
}

.marquee__item:nth-child(4n) {
    border-top-right-radius: 1rem;
}

.marquee__item:nth-child(4n + 1) {
    border-bottom-right-radius: 1rem;
}

.marquee__item:nth-child(4n + 2) {
    border-bottom-left-radius: 1rem;
}

.marquee__item:nth-child(4n + 3) {
    border-top-left-radius: 1rem;
}

.marquee--8 .marquee__item:nth-of-type(1) {
    --marquee-item-index: 1;
}

.marquee--8 .marquee__item:nth-of-type(2) {
    --marquee-item-index: 2;
}

.marquee--8 .marquee__item:nth-of-type(3) {
    --marquee-item-index: 3;
}

.marquee--8 .marquee__item:nth-of-type(4) {
    --marquee-item-index: 4;
}

.marquee--8 .marquee__item:nth-of-type(5) {
    --marquee-item-index: 5;
}

.marquee--8 .marquee__item:nth-of-type(6) {
    --marquee-item-index: 6;
}

.marquee--8 .marquee__item:nth-of-type(7) {
    --marquee-item-index: 7;
}

.marquee--8 .marquee__item:nth-of-type(8) {
    --marquee-item-index: 8;
}

@keyframes go {
    to {
        inset-inline-start: calc(var(--marquee-item-width) * -1);
    }
}

/* Add new keyframes for reverse direction items */
@keyframes go-reverse {
    to {
        inset-inline-start: var(--marquee-item-offset);
    }
}

/*
 * The following animations are only used if you're using the .marquee__inner approach
 * We're not using these now, keeping them for reference
 */
@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes marquee-reverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}

.marquee__inner {
    width: 100%;
    display: flex;
    position: relative;
    /* Disable animation on inner container since we're using item-based animation */
    /* animation: marquee var(--marquee-duration) linear infinite; */
}

/* Disable inner container animation */
.marquee--reverse .marquee__inner {
    animation-name: marquee-reverse;
}

.marquee__item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: var(--marquee-element-width);
    margin: 0 var(--marquee-element-spacing);
    opacity: 0.7;
}

.marquee__item img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
