/* Voeg Google Fonts import toe bovenaan de CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Update de basis font styling */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333333;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Moderne achtergrondkleur met subtiele huisstijl tint */
    background: linear-gradient(135deg,
        rgba(47, 113, 184, 0.97) 0%,    /* Donkerder blauw */
        rgba(26, 74, 143, 0.97) 45%,    /* Donkerder blauw */
        rgba(58, 170, 53, 0.97) 100%    /* Donkerder groen */
    ) !important;
}

/* Update heading styles */
h1, h2, h3, h4, h5, h6,
.section-title,
.tile h3,
.navigation-section .section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 600;
}

/* Update form element fonts */
input, 
button, 
select, 
textarea,
.btn,
.tile,
.blog-mini-title,
.user-info h3,
.login-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Basis container styling */
body {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Update alleen de header styling */
.header-section > .header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important; /* Verticaal centreren */
    justify-content: space-between !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    background: white !important;
}

.header-section > .header > .header-image {
    flex: 0 0 60% !important;
    max-width: 60% !important;
    width: 60% !important;
}

.header-section > .header > .header-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.login-container {
    max-width: 600px;
    margin: 5x auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Nieuwe container structuur */
.tiles-and-network-container {
    display: flex !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
}

/* Aanpassing tiles container */
.tiles-container {
    flex: 0 0 calc(100% - 540px) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

/* Netwerk atom sectie */
.network-atom-section {
    flex: 0 0 500px !important;
    width: 500px !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.97) 0%,
        rgba(26, 74, 143, 0.97) 45%,
        rgba(58, 170, 53, 0.97) 100%) !important;
}

/* Aanpassing scan-tiles-grid */
.scan-tiles-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 kolommen i.p.v. 4 */
    gap: 20px !important;
}

/* Aanpassing other-tiles-grid */
.other-tiles-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 3 kolommen i.p.v. 5 */
    gap: 20px !important;
}

/* Aangepaste tile styling met hover effect */
.tile {
    position: relative !important;
    background: white !important;
    border-radius: 10px !important;
    padding: 20px !important;
    text-align: center !important;
    box-shadow: 0 5px 15px rgba(47, 113, 184, 0.1) !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(47, 113, 184, 0.1) !important;
    height: 120px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.tile.active {
    opacity: 1;
    cursor: pointer;
}

.tile.active:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(47, 113, 184, 0.2);
}

.tile i {
    font-size: 48px;
    color: #2f71b8;
    margin-bottom: 20px;
}

.tile h3 {
    margin: 0;
    color: #333;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

.input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn {
    background: #2f71b8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    margin: 10px 0;
}

.btn:hover {
    background: #245a94;
}

.logout-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.logout-btn:hover {
    background: #c82333;
}

.links {
    text-align: center;
    margin-top: 15px;
}

.links a {
    color: #2f71b8;
    text-decoration: none;
    font-size: 14px;
}

.links a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 10px;
    color: #666;
}

#resetForm, #setPasswordForm {
    display: none;
}

.login-container form {
    transition: all 0.3s ease;
}

.access-note {
    font-size: 12px;
    color: #dc3545;
    margin-top: 8px;
    font-style: italic;
}

.tile:not(.active) {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
}

.tile:not(.active):hover {
    transform: none;
}

.tile:not(.active)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

.step {
    text-align: center;
    position: relative;
    flex: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    position: relative;
    z-index: 2;
}

.step.active .step-number {
    background: #2f71b8;
}

.step.completed .step-number {
    background: #28a745;
}

.step-label {
    font-size: 14px;
    color: #666;
}

.step.active .step-label {
    color: #2f71b8;
    font-weight: bold;
}

.progress-bar {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.progress-fill {
    height: 100%;
    background: #28a745;
    width: 0%;
    transition: width 0.3s ease;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn i {
    font-size: 14px;
}

/* Specifieke styling voor de Ikigai button in de container */
.registration-notice .btn {
    margin-top: 10px;
    max-width: calc(100% - 20px); /* Houdt rekening met padding */
    box-sizing: border-box;
}

.video-mini-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-mini-indicator::before {
    content: '\f144';  /* Font Awesome play circle icon */
    font-family: 'Font Awesome 5 Free';
    font-size: 24px;
}

/* Algemene sectie styling */
.blog-section, .timeline-section {
    margin: 50px auto;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(47, 113, 184, 0.1);
    border: 1px solid rgba(47, 113, 184, 0.1);
    position: relative;
    overflow: hidden;
}

/* Decoratieve elementen */
.blog-section::before, .timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2f71b8 0%, #28a745 100%);
}

/* Sectie titels */
.section-title {
    text-align: center;
    color: #2f71b8;
    font-size: 2.2em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2f71b8, #28a745);
    border-radius: 2px;
}

.section-title i {
    margin-right: 15px;
    color: #28a745;
}

/* Blog cards styling */
.blog-mini-card {
    flex: 1;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(47, 113, 184, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog-mini-title {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.blog-mini-title a {
    color: #2f71b8;
    text-decoration: none;
    font-weight: 500;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-mini-thumbnail {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.blog-mini-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-mini-excerpt {
    padding: 15px;
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.blog-mini-status {
    padding: 10px 15px;
    color: #666;
    font-size: 0.9em;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.blog-mini-date {
    display: inline-block;
}

/* Timeline styling */
.timeline-intro {
    text-align: center;
    color: #444;
    font-size: 1.2em;
    margin: 30px auto;
    max-width: 800px;
    line-height: 1.8;
    padding: 20px;
    background: rgba(47, 113, 184, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(47, 113, 184, 0.1);
}

/* Login prompt styling */
.login-prompt {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(47, 113, 184, 0.1);
    margin: 30px auto;
    max-width: 500px;
    border: 1px solid rgba(47, 113, 184, 0.1);
}

.login-prompt p {
    color: #444;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.login-prompt i {
    margin-right: 10px;
    color: #28a745;
}

.login-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #2f71b8 0%, #245a94 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 113, 184, 0.2);
}

.login-link:hover {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.25);
}

/* View all blogs button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2f71b8 0%, #245a94 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 113, 184, 0.2);
}

.view-all-btn:hover {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.25);
}

.view-all-btn i {
    font-size: 1.2em;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .blog-section, .timeline-section {
        padding: 30px 20px;
        margin: 30px 15px;
    }

    .section-title {
        font-size: 1.8em;
    }

    .timeline-intro {
        font-size: 1.1em;
        padding: 15px;
    }

    .login-prompt {
        margin: 20px 15px;
        padding: 30px 20px;
    }
}

/* Blog grid container */
.blog-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
    padding: 0 15px;
}

/* Blog card styling */
.blog-mini-card {
    flex: 1;
    min-width: 0; /* Voorkomt dat kaarten te breed worden */
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(47, 113, 184, 0.1);
}

.blog-mini-card .blog-mini-title {
    padding: 15px;
}

.blog-mini-card .blog-mini-title a {
    color: #2f71b8;
    text-decoration: none;
    font-weight: 500;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(47, 113, 184, 0.15);
    border-color: #2f71b8;
}

/* Responsive aanpassingen */
@media (max-width: 1200px) {
    .blog-grid {
        flex-wrap: wrap;
    }
    .blog-mini-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

/* Aangepaste styling voor ingelogde gebruikers */
.logged-in .main-step::after {
    display: none !important; /* Verberg de verticale lijn */
}

.logged-in .sub-steps {
    display: none !important; /* Verberg de sub-steps */
}

.logged-in .main-step {
    max-width: none !important; /* Laat de items de volledige breedte gebruiken */
}

.logged-in .step-title {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: left !important; /* Links uitlijnen van alle tekst binnen step-title */
}

.step-summary {
    color: #1A4A8F !important;
    font-size: 0.85em !important;
    line-height: 1.4 !important;
    margin-top: 10px !important;
    padding: 0 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-align: left !important; /* Links uitlijnen van de tekst */
}

.step-title-main {
    color: #2F71B8 !important;
    font-weight: 600 !important;
    font-size: 1.1em !important;
    text-align: center !important; /* Hoofdtitel blijft gecentreerd */
}

.step-summary i {
    color: #3AAA35 !important;
    font-size: 1.1em !important;
}

@media (max-width: 768px) {
    .blog-mini-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .blog-mini-card {
        flex: 0 0 100%;
    }
}

/* Blog grid styling - alleen deze CSS toevoegen/aanpassen */
.blog-section {
    margin: 50px auto;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(47, 113, 184, 0.1);
    border: 1px solid rgba(47, 113, 184, 0.1);
}

.blog-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
}

.blog-mini-card {
    flex: 1;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(47, 113, 184, 0.1);
}

.blog-mini-title {
    padding: 15px;
}

.blog-mini-title a {
    color: #2f71b8;
    text-decoration: none;
    font-weight: 500;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(47, 113, 184, 0.15);
    border-color: #2f71b8;
}

.thumbnail-container {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.blog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-indicator:before {
    content: '\f144';
    font-family: 'Font Awesome 5 Free';
    font-size: 24px;
    margin-left: 4px;
}

.blog-mini-card:hover .video-indicator {
    background-color: rgba(47, 113, 184, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.blog-thumbnail-placeholder {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f7fa;
    color: #2f71b8;
    font-size: 4em;
}

.blog-mini-card {
    cursor: pointer;
}

.blog-mini-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    color: #666;
    font-size: 0.9em;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.blog-mini-date, .blog-mini-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-mini-date i, .blog-mini-author i {
    color: #2f71b8;
}

/* Tile group styling */
.tile-group {
    border: 2px solid #2f71b8;
    border-radius: 10px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(47, 113, 184, 0.05) 0%, rgba(40, 167, 69, 0.05) 100%);
    margin-bottom: 20px;
}

.tile-group .section-title {
    color: #2f71b8;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.tile-group .section-title i {
    color: #28a745;
}

.post-its-container {
    position: relative !important;
    margin-top: 30px !important;
    min-height: 600px !important;
    width: 500px !important;
}

.post-it {
    position: absolute !important;
    width: 400px !important;
    padding: 30px !important;
    background: #FFFAD1 !important;
    box-shadow: 3px 3px 12px rgba(0,0,0,0.2) !important;
    border-radius: 2px !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

/* Update de posities van de post-its */
.post-it:nth-child(1) {
    transform: rotate(-3deg) !important;
    top: 0 !important; /* Eerste post-it bovenaan */
    left: 10px !important;
    z-index: 3 !important;
}

.post-it:nth-child(2) {
    transform: rotate(2deg) !important;
    top: calc(50% - 100px) !important; /* Tweede post-it in het midden */
    left: 50px !important;
    z-index: 2 !important;
}

.post-it:nth-child(3) {
    transform: rotate(-2deg) !important;
    bottom: 0 !important; /* Derde post-it onderaan */
    left: 90px !important;
    z-index: 1 !important;
}

/* Nieuwe active class voor de focus state */
.post-it.active {
    z-index: 4 !important;
    transform: rotate(0deg) scale(1.02) !important;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.3) !important;
}

/* Hover effect voor interactiviteit */
.post-it:hover {
    transform: scale(1.02) rotate(0deg) !important;
    z-index: 4 !important;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3) !important;
}

.post-it h3 {
    color: #2F71B8 !important;
    font-size: 1.15rem !important;
    margin-bottom: 12px !important;
    font-weight: 600 !important;
}

.post-it .cta {
    color: #3AAA35 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: block !important;
    margin-top: 15px !important;
}

.post-it:nth-child(1) {
    transform: rotate(-3deg) !important;
    top: 0 !important; /* Eerste post-it bovenaan */
    left: 10px !important;
    z-index: 3 !important;
}

.post-it:nth-child(2) {
    transform: rotate(2deg) !important;
    top: calc(50% - 100px) !important; /* Tweede post-it in het midden */
    left: 50px !important;
    z-index: 2 !important;
}

.post-it:nth-child(3) {
    transform: rotate(-2deg) !important;
    bottom: 0 !important; /* Derde post-it onderaan */
    left: 90px !important;
    z-index: 1 !important;
}

/* Tile beschrijving op hover */
.tile::after {
    content: attr(data-description);
    position: absolute;
    bottom: 100%; /* Plaats het boven de tegel */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(47, 113, 184, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9em;
    min-width: 200px; /* Minimale breedte */
    max-width: 300px; /* Maximale breedte */
    white-space: normal; /* Sta tekstomslag toe */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.tile:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px); /* 10px ruimte boven de tegel */
}

/* Zorg dat de hover ook werkt voor inactieve tegels */
.tile:not(.active):hover {
    cursor: help;
}

/* Voeg een pijltje toe */
.tile::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(47, 113, 184, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.tile:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 2px);
}

/* Content container layout */
.content-container {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    display: block !important;
}

/* Timeline sectie */
.timeline-section {
    flex: 2;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(47, 113, 184, 0.1);
    border: 1px solid rgba(47, 113, 184, 0.1);
}

/* Blog sectie */
.blog-section {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(47, 113, 184, 0.1);
    border: 1px solid rgba(47, 113, 184, 0.1);
}

/* Aangepaste blog grid voor verticale layout */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Aangepaste blog card styling */
.blog-mini-card {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100px;
}

.blog-mini-thumbnail {
    height: 120px;
}

/* Responsive aanpassingen */
@media (max-width: 1024px) {
    .content-container {
        flex-direction: column;
    }
    
    .blog-section, .timeline-section {
        width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .tiles-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}


/* Verwijder alle andere .navigation-section definities en vervang ze door deze ene, complete definitie */
.navigation-section {
    max-width: 1400px !important;
    margin: 0 auto 50px !important;
    /* Nieuwe, meer intense gradient met meerdere kleurstops */
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.97) 0%,    /* Donker blauw */
        rgba(26, 74, 143, 0.97) 25%,   /* Overgang */
        rgba(58, 170, 53, 0.97) 75%,   /* Overgang */
        rgba(34, 139, 34, 0.97) 100%)  /* Donker groen */ !important;
    border-radius: 20px !important;
    /* Dubbele glow effect */
    box-shadow: 
        0 0 30px rgba(0, 216, 74, 0.5),
        0 0 60px rgba(0, 102, 255, 0.3) !important;
    /* Moderne glasachtige border */
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    padding: 40px 30px !important;
    position: relative !important;
    overflow: hidden !important;
}

.navigation-section .section-title {
    color: #2f71b8 !important; /* Huisstijl blauw */
    text-align: center !important;
    margin: -20px -10px 30px -10px !important;
    padding: 30px !important;
    font-size: 2.4em !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3) !important;
    text-shadow: 
        2px 2px 0 rgba(255, 255, 255, 0.4),
        4px 4px 0 rgba(255, 255, 255, 0.2) !important;
}

.navigation-section .section-title i {
    color: #28a745 !important; /* Huisstijl groen */
    margin-right: 15px !important;
}

.tiles-container {
    padding: 20px 40px !important;
}

/* Voeg toe aan de bestaande CSS */
.timeline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 15px;
}

.timeline-overlay i {
    font-size: 3em;
    color: #2f71b8;
    margin-bottom: 20px;
}

.timeline-overlay p {
    color: #333;
    font-size: 1.2em;
    text-align: center;
    margin: 0;
    padding: 0 20px;
}

.timeline-overlay .login-link {
    margin-top: 20px;
    background: #2f71b8;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.timeline-overlay .login-link i {
    color: white;  /* Maakt het icoon wit */
    font-size: 1em;  /* Past de grootte aan voor betere verticale uitlijning */
    margin: 0;  /* Verwijdert eventuele standaard marges */
}

.timeline-overlay .login-link:hover {
    background: #28a745;
    transform: translateY(-2px);
}

.timeline-section {
    position: relative; /* Voeg dit toe aan bestaande timeline-section styling */
}

/* Checkbox groep styling */
.input-group {
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid rgba(47, 113, 184, 0.1);
}

.input-group > label {
    display: block;
    font-weight: 600;
    color: #2f71b8;
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Checkbox container */
.input-group > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

/* Individual checkbox styling */
.input-group label {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.input-group label:hover {
    background: #e3f2fd;
    border-color: #2f71b8;
}

/* Checkbox input styling */
.input-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #2f71b8;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.input-group input[type="checkbox"]:checked {
    background-color: #2f71b8;
    border-color: #2f71b8;
}

.input-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .input-group > div {
        grid-template-columns: 1fr;
    }
    
    .input-group {
        padding: 15px;
        margin-bottom: 20px;
    }
}

/* Section headers */
.form-section-title {
    color: #333;
    font-size: 1.2em;
    font-weight: 600;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2f71b8;
}

/* Profielfoto upload styling */
.profile-upload-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.preview-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #2f71b8;
    background: #f8f9fa;
}

.preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-input {
    display: none;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2f71b8;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    background: #245a94;
}

.upload-info {
    color: #666;
    font-size: 0.9em;
}

.user-welcome-bar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
}

.user-welcome-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2f71b8 0%, #28a745 100%);
}

.header-section > .header > .user-welcome-content {
    flex: 0 0 35% !important;
    padding: 12px !important;
    background: #f8f9fa !important;
    border-radius: 6px !important;
    border: 1px solid #e6eef7 !important;
    margin: 0 !important;
    min-width: 240px !important;
    max-width: 300px !important;
}

/* Custom styling voor login form en header quote */
.header-section > .header > .header-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
}

.header-quote {
    font-size: 22px;
    color: #2f71b8;
    margin: 30px auto;
    max-width: 800px;
    text-align: center;
    padding: 25px;
    position: relative;
    font-weight: 600;
    line-height: 1.5;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(47, 113, 184, 0.15);
    border: 3px solid #2f71b8;
    transform: translateY(-10px);
}

.header-quote::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -15px;
    font-size: 60px;
    color: #2f71b8;
    opacity: 0.2;
}

.header-quote::after {
    content: '"';
    position: absolute;
    right: -15px;
    bottom: -35px;
    font-size: 60px;
    color: #2f71b8;
    opacity: 0.2;
}

.login-forms-container {
    width: 260px;
    box-sizing: border-box;
    padding: 20px;
    margin: 0 auto;
}

.login-forms-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-forms-container .button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.login-forms-container .button-container .btn,
.login-forms-container .button-container .register-link,
.login-forms-container .button-container .forgot-link {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    margin: 0;
}

.login-forms-container .form-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.login-forms-container .form-row label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    width: 100%;
}

.login-forms-container .form-row input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e6eef7;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-forms-container .form-row input:focus {
    border-color: #2f71b8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 113, 184, 0.1);
}

.login-forms-container .btn,
.login-forms-container .register-link,
.login-forms-container .forgot-link {
    width: 100%;
    max-width: 260px;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 5px 0;
    text-decoration: none;
    font-size: 14px;
    box-sizing: border-box;
}

.login-forms-container .btn {
    background: #2f71b8;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.login-forms-container .btn:hover {
    background: #245d99;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(47, 113, 184, 0.2);
}

.login-forms-container .form-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.login-forms-container .btn,
.login-forms-container .register-link,
.login-forms-container .forgot-link {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
}

.login-forms-container .register-link {
    background: #f0f7ff;
    border: 2px solid #2f71b8;
    color: #2f71b8;
    font-weight: 500;
}

.login-forms-container .register-link:hover {
    background: #e0f0ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(47, 113, 184, 0.1);
}

.login-forms-container .forgot-link {
    color: #666;
    font-size: 13px;
    padding: 8px;
    background: transparent;
}

.login-forms-container .forgot-link:hover {
    color: #2f71b8;
    background: rgba(47, 113, 184, 0.05);
}

.login-forms-container .btn {
    width: 100%;
    padding: 12px;
    background: #2f71b8;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
}

.login-forms-container .btn:hover {
    background: #245d99;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(47, 113, 184, 0.2);
}

.login-forms-container .form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.login-forms-container .register-link {
    text-align: center;
    padding: 12px;
    background: #f0f7ff;
    border: 2px solid #2f71b8;
    border-radius: 5px;
    color: #2f71b8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-forms-container .register-link:hover {
    background: #e0f0ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(47, 113, 184, 0.1);
}

.login-forms-container .forgot-link {
    text-align: center;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.login-forms-container .forgot-link:hover {
    color: #2f71b8;
    background: rgba(47, 113, 184, 0.05);
}

/* Moderne, compacte login layout */
.login-forms-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.login-forms-container form {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
}

.login-forms-container .form-row {
    position: relative;
    margin-bottom: 6px;
}

.login-forms-container .form-row > label {
    display: none;
}

.login-forms-container .form-row > input {
    width: 100%;
    height: 24px;
    padding: 0 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 11px;
    background: white;
}

.login-forms-container .form-row > input::placeholder {
    color: #666;
    font-size: 11px;
}

.login-forms-container .btn {
    width: 100%;
    height: 24px;
    background: #2f71b8;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.login-forms-container .btn:hover {
    background: #245a94;
    transform: translateY(-1px);
}

.login-forms-container .form-actions {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 10px;
}

.login-forms-container .register-link {
    color: #3AAA35;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 0;
}

.login-forms-container .register-link i {
    font-size: 10px;
    width: 12px;
    text-align: center;
}

.login-forms-container .forgot-link {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 0;
}

.login-forms-container .forgot-link i {
    font-size: 10px;
    width: 12px;
    text-align: center;
}

.login-forms-container .register-link:hover,
.login-forms-container .forgot-link:hover {
    text-decoration: underline;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #2f71b8;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f3f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder i {
    font-size: 1.5em;
    color: #2f71b8;
}

.user-info {
    flex: 1;
}

.user-info h3 {
    margin: 0;
    color: #2f71b8;
    font-size: 1.2em;
    font-weight: 600;
}

.user-info span {
    color: #666;
    font-size: 0.9em;
}

/* Styling voor de logout knop */
.logout-button {
    padding: 8px 15px !important;
    background: #dc3545 !important; /* Rode achtergrond */
    border-radius: 5px !important;
    color: white !important; /* Witte tekst */
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.logout-button:hover {
    background: #c82333 !important; /* Donkerder rood bij hover */
    transform: translateY(-1px) !important;
}

.logout-button i {
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column !important; /* Stack verticaal op kleine schermen */
    }
    
    .header-image {
        max-width: 100% !important;
        margin-bottom: 15px !important;
    }
    
    .user-welcome-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        justify-content: center !important;
        min-height: auto !important;
        width: 100%;
        margin: 0;
    }

    .logout-button {
        margin-top: 15px;
    }

    .login-forms-container {
        flex-direction: column;
        gap: 15px;
        justify-content: center !important;
        width: 100%;
    }

    .login-forms-container form {
        flex-direction: column;
        width: 100%;
        justify-content: center !important;
    }

    .login-forms-container .input-group {
        width: 100%;
    }

    .login-forms-container .input-group input {
        width: 100%;
        max-width: none !important;
    }

    .login-forms-container .links {
        flex-direction: column;
        gap: 10px;
        margin-left: 0;
    }
}

.tile.active {
    text-decoration: none;
    color: inherit;
}

a.tile {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

/* Voeg deze CSS toe aan de bestaande styles */
.tile {
    position: relative;
}

.tile::after {
    content: attr(data-description);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.tile:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

/* Zorg dat de hover ook werkt voor inactieve tegels */
.tile:not(.active):hover {
    cursor: help;
}

/* Voeg deze CSS toe aan de bestaande styles */
.tile {
    position: relative;
    overflow: hidden; /* Houdt de content binnen de tegel */
}

.tile::after {
    content: attr(data-description);
    position: absolute;
    bottom: -100%; /* Start buiten beeld */
    left: 0;
    right: 0;
    background: rgba(47, 113, 184, 0.95);
    color: white;
    padding: 8px;
    font-size: 0.85em;
    line-height: 1.4;
    height: 100%;
    white-space: normal; /* Sta tekstomslag toe */
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Alleen voor actieve tegels */
.tile.active:hover::after {
    bottom: 0;
    opacity: 1;
}

/* Zorg dat inactieve tegels nog steeds klikbaar zijn voor de access-note */
.tile:not(.active) {
    cursor: not-allowed;
}

/* Behoud de access-note styling */
.access-note {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: #666;
    font-size: 0.8em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.tile:not(.active):hover .access-note {
    opacity: 1;
}

/* Voeg deze CSS toe aan de bestaande styles */
.tile {
    position: relative;
    overflow: hidden;
}

/* Beschrijving voor actieve tegels */
.tile.active::after {
    content: attr(data-description);
    position: absolute;
    bottom: 0;          /* Blijft op de bodem */
    left: 0;
    width: 100%;        /* Volledige breedte */
    height: 50%;        /* Halve hoogte */
    background: rgba(47, 113, 184, 0.8);
    color: white;
    padding: 10px;
    font-size: 0.85em;
    line-height: 1.4;
    white-space: normal;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    border-bottom-left-radius: 8px;   /* Alleen onderste hoeken afgerond */
    border-bottom-right-radius: 8px;
    transform: translateX(0); /* Voorkom verschuiving */
}

.tile.active:hover::after {
    opacity: 1;
}

/* Beschrijving voor inactieve tegels */
.tile:not(.active)::after {
    content: attr(data-description);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2f71b8 0%, #245a94 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9em;
    min-width: 200px;
    max-width: 300px;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 3px 10px rgba(47, 113, 184, 0.2);
    z-index: 1000;
}

/* Pijltje onder de tooltip */
.tile:not(.active)::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: #245a94;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tile:not(.active):hover::after,
.tile:not(.active):hover::before {
    opacity: 1;
    visibility: visible;
}

/* CSS voor de blauwe balk bij actieve tegels */
.tile {
    position: relative;
    overflow: hidden;
}

.tile.active::after {
    content: attr(data-description);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: rgba(47, 113, 184, 0.8);
    color: white;
    padding: 10px;
    font-size: 0.85em;
    line-height: 1.4;
    white-space: normal;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.tile.active:hover::after {
    opacity: 1;
}

/* Tooltip styling voor inactieve tegels */
.tile:not(.active)::after {
    content: attr(data-description);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2f71b8 0%, #245a94 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9em;
    min-width: 200px;
    max-width: 300px;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 3px 10px rgba(47, 113, 184, 0.2);
    z-index: 1000;
}

.tile:not(.active)::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: #245a94;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tile:not(.active):hover::after,
.tile:not(.active):hover::before {
    opacity: 1;
    visibility: visible;
}

/* Voeg deze CSS toe om eventuele verbergende stijlen te overschrijven */
.login-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1000 !important;
    margin: 40px auto !important;
    max-width: 600px !important;
}

#loginForm {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.header-container, .tiles-container {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(47, 113, 184, 0.1);
    border: 1px solid rgba(47, 113, 184, 0.1);
    margin-bottom: 30px;
}

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

.tiles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    margin: 20px auto;
}

/* Styling voor user welcome content met subtiele afscheiding */
.user-welcome-content {
    margin-top: 20px;
    padding-top: 20px;
    position: relative;
}

/* Gradient lijn boven user welcome content */
.user-welcome-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(47, 113, 184, 0) 0%,
        rgba(47, 113, 184, 0.2) 25%,
        rgba(47, 113, 184, 0.2) 75%,
        rgba(47, 113, 184, 0) 100%
    );
}


/* Update de containers om dezelfde breedte te hebben als de content-container */
.header,
.navigation-section {
    max-width: 1400px !important; /* Zelfde breedte voor alle containers */
    margin: 0 auto 50px !important;
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(47, 113, 184, 0.1) !important;
    border: 1px solid rgba(47, 113, 184, 0.1) !important;
    padding: 40px 30px !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
    left: auto !important; /* Reset left positie */
}

/* ⚡ ENERGIEKE INTRO-CONTAINER MET DEELTJES ANIMATIE */
.intro-section .intro-container,
div.intro-container,
.intro-container {
    max-width: 1400px !important; /* Zelfde breedte als header */
    margin: 0 auto 60px !important; /* Extra margin voor scheiding */
    background: 
        linear-gradient(135deg, rgba(47, 113, 184, 0.97) 0%, rgba(26, 74, 143, 0.97) 45%, rgba(58, 170, 53, 0.97) 100%),
        radial-gradient(circle at 20% 30%, rgba(47, 113, 184, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(58, 170, 53, 0.3) 0%, transparent 40%) !important;
    border-radius: 25px !important;
    box-shadow: 
        0 20px 40px rgba(47, 113, 184, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    padding: 60px 40px 50px 40px !important; /* Extra ruimte bovenin voor titel */
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
    color: white !important;
    border: 8px solid #fff !important; /* Dikke witte rand voor onderscheid */
    /* Flexbox layout aanpassing voor verticale structuur */
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 30px !important;
}

/* 🧡 ORANJE ACCENT DECORATIE - Subtiel zonder hover */
.intro-section .intro-container::before,
div.intro-container::before,
.intro-container::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    ) !important;
    border-radius: 25px !important;
    pointer-events: none !important;
    /* Geen animaties */
}

/* Geen hover effecten meer */

/* ⚡ ENERGIEDEELTJES ANIMATIE VOOR INTRO-CONTAINER */
.intro-container .energy-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
    animation: floatEnergyParticle 6s ease-in-out infinite;
}

@keyframes floatEnergyParticle {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.8;
    }
    25% {
        transform: translate(var(--moveX1, 30px), var(--moveY1, -20px));
        opacity: 0.4;
    }
    50% {
        transform: translate(var(--moveX2, -20px), var(--moveY2, 30px));
        opacity: 0.6;
    }
    75% {
        transform: translate(var(--moveX3, 40px), var(--moveY3, 10px));
        opacity: 0.3;
    }
}

/* 🎨 HARD RESET VOOR INTRO-CONTAINER - Forceer blauw-groen theme */
.intro-container {
    background: linear-gradient(135deg, rgba(47, 113, 184, 0.97) 0%, rgba(26, 74, 143, 0.97) 45%, rgba(58, 170, 53, 0.97) 100%) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 60px 40px 50px 40px !important;
    margin: 0 auto 60px !important;
    max-width: 1400px !important;
    box-shadow: 0 20px 40px rgba(47, 113, 184, 0.3) !important;
    border: 8px solid #fff !important; /* Dikke witte rand voor onderscheid */
}

/* Force witte tekst kleur binnen intro-container */
.intro-container,
.intro-container * {
    color: white !important;
}

/* Overschrijf alle mogelijke conflicterende backgrounds */
.intro-container {
    background-color: rgba(47, 113, 184, 0.97) !important;
    background-image: linear-gradient(135deg, rgba(47, 113, 184, 0.97) 0%, rgba(26, 74, 143, 0.97) 45%, rgba(58, 170, 53, 0.97) 100%) !important;
}

/* 🏆 INTRO TITEL STYLING */
.intro-container-title {
    text-align: center !important;
    margin-bottom: 30px !important;
    padding-bottom: 20px !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.intro-container-title h2 {
    font-size: 2.0em !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 0 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
}

.intro-container-title i {
    font-size: 1.2em !important;
    color: #81c784 !important;
    text-shadow: 0 0 10px rgba(129, 199, 132, 0.5) !important;
}

/* CONTENT WRAPPER VOOR FLEXBOX LAYOUT */
.intro-content-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 40px !important;
    padding-right: 40px !important; /* Extra ruimte rechts voor video */
}

/* Voeg de gradient lijn toe aan de header */
.header::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: linear-gradient(90deg, #2f71b8 0%, #28a745 100%) !important;
}

/* Zorg dat de header relative positioning heeft voor de pseudo-element */
.header {
    position: relative !important;
    overflow: hidden !important;
}

.navigation-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: linear-gradient(90deg, #2f71b8 0%, #28a745 100%) !important;
}

.tiles-container {
    padding: 20px 40px !important;
}

/* Update de section-title styling binnen de navigation-section */
.navigation-section .section-title {
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.1) 0%,
        rgba(40, 167, 69, 0.1) 100%) !important;
    padding: 20px 30px !important;
    border-radius: 10px !important;
    margin: -20px -20px 20px -20px !important; /* Negatieve margin om de padding van de parent te compenseren */
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.navigation-section .section-title i {
    color: #2f71b8 !important;
}

/* Verwijder eerst alle bestaande styling */
body > .navigation-section {
    background: none !important;  /* Reset bestaande achtergrond */
}

/* Voeg de nieuwe styling toe */
body > .content-container > .navigation-section {
    max-width: 1400px !important;
    margin: 0 auto 50px !important;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.45) 0%,
        rgba(40, 167, 69, 0.45) 100%) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(47, 113, 184, 0.35) !important;
    border: 1px solid rgba(47, 113, 184, 0.30) !important;
    padding: 40px 30px !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Reset en centreer de section-title */
.navigation-section .section-title {
    background: none !important;
    justify-content: center !important;
    text-align: center !important;
}

.navigation-section .section-title i.fa-compass {
    color: #28a745 !important; /* Huisstijl groen */
    margin-right: 15px !important;
}

/* Of nog specifieker als dat nodig is */
.navigation-section .section-title i[class*="fa-compass"] {
    color: #28a745 !important; /* Huisstijl groen */
    margin-right: 15px !important;
}

.tiles-container .tile h3,
.tiles-container .tile .tile-title {
    color: #2f71b8 !important; /* Huisstijl blauw */
    font-weight: 600 !important;
}

/* Voor het geval er links in de tegels zitten */
.tiles-container .tile a {
    color: #2f71b8 !important; /* Huisstijl blauw */
    text-decoration: none !important;
}

/* Behoud de kleur ook bij hover */
.tiles-container .tile:hover h3,
.tiles-container .tile:hover .tile-title,
.tiles-container .tile:hover a {
    color: #2f71b8 !important;
}

/* Bestaande tegels blijven staan */

/* <?php if (isset($_SESSION['ondernemer_id']) && $has_persons_of_interest): ?>
    <div class="tile <?php echo $has_persons_of_interest ? 'active' : ''; ?>" 
         onclick="window.location.href='persons_of_interest.php'"
         data-description="Bekijk de ondernemers waarmee je Ikigaï's deelt">
        <i class="fas fa-star"></i>
        <h3>Persons of Interest</h3>
    </div>
<?php endif; ?> */

/* Overige tegels */
.tile .fa-star {
    color: #ffd700; /* Goudgele kleur voor de ster */
}

.tile-description {
    font-size: 0.8em;
    color: #666;
    margin-top: 8px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
/* Styling voor de radio group container */
.bedrijfsgrootte-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: white;
    border-radius: 8px;
}
/* Styling voor de radio group container */
.bedrijfsgrootte-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

/* Maak de radio buttons exact zoals de checkboxes */
.bedrijfsgrootte-group label {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    margin: 0;
    cursor: pointer;
    border-radius: 4px;
}

/* Radio button zelf */
.bedrijfsgrootte-group input[type="radio"] {
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Label tekst */
.bedrijfsgrootte-group label span {
    font-size: 14px;
    color: #333;
    text-align: left;
}

/* Hover effect zoals de checkboxes */
.bedrijfsgrootte-group label:hover {
    background-color: rgba(47, 113, 184, 0.05);
}

/* Nieuwe scan-group styling */
.scan-group {
    background: rgba(47, 113, 184, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(47, 113, 184, 0.1);
}

.scan-group-title {
    color: #2f71b8;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(47, 113, 184, 0.1);
}

/* Grid layout aanpassingen */
.scan-tiles-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
}

.other-tiles-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 15px !important;
}

/* Behoud de bestaande tile styling maar maak ze iets compacter */
.tile {
    min-height: 110px;
    padding: 15px;
}

.tile i {
    font-size: 1.8em;
    margin-bottom: 8px;
}

.tile h3 {
    font-size: 1em;
    margin-top: 5px;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .tiles-container {
        padding: 15px !important;
    }
    
    .scan-group {
        padding: 15px;
    }
}

.intro-section {
    margin: 2rem auto;
    padding: 0 20px;
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
}

.teaser-content {
    position: relative;
    z-index: 1;
}

.teaser-content h2 {
    font-size: 2.2em;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Voeg wat subtiele hover effecten toe aan de expand button */
.expand-btn:hover {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.2) 0%, 
        rgba(58,170,53,0.3) 100%
    );
    transform: translateY(-2px);
}

/* Voeg een subtiele groene tint toe aan de closing teaser */
.closing-teaser {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(58,170,53,0.2) 100%
    );
}

/* Update en verbeter de styling */
.intro-section {
    margin: 2rem auto;
    padding: 0 20px;
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
}

.teaser-content {
    position: relative;
    z-index: 1;
}

.teaser-content h2 {
    font-size: 2.2em;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.expand-btn {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.2) 100%
    );
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2rem auto 1rem;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.2) 0%, 
        rgba(58,170,53,0.3) 100%
    );
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.5);
}

.expand-btn i {
    transition: transform 0.3s ease;
}

.expand-btn.expanded i {
    transform: rotate(180deg);
}

.expandable-content {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out, transform 0.3s ease-out;
    position: relative !important;
    z-index: 1000 !important;
}

.expandable-content.expanded {
    max-height: 2000px !important; /* Forceer met !important */
    opacity: 1;
    transform: translateY(0);
    transition: max-height 1s ease-in, opacity 0.5s ease-in, transform 0.5s ease-in;
}

/* Voeg debug styling toe om te zien waar de content is */
.expandable-content * {
    position: relative;
    z-index: 1001 !important;
}

.closing-teaser {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(58,170,53,0.2) 100%
    );
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Verbeterde typografie en spacing */
.teaser-content h2 {
    font-size: 2.2em;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.expandable-content h3 {
    font-size: 1.6em;
    margin: 2rem 0 1rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.expandable-content ul {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
}

.expandable-content li {
    margin-bottom: 0.8rem;
    list-style-type: none;
    position: relative;
}

.expandable-content li:before {
    content: "•";
    color: #3aaa35;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}



/* Voeg deze toe om body padding te resetten indien nodig */
body {
    padding: 0 !important;
    margin: 0 !important;
}

/* Update de container padding voor kleinere schermen */
@media (max-width: 768px) {
    .intro-section {
        padding: 0 15px;
    }
}

/* Gemeenschappelijke styling voor de sections */
.header-section,
.intro-section {
    margin: 2rem auto !important;
    padding: 0 !important;
    max-width: 1400px !important;
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    position: relative !important;
}

/* Kleinere ruimte tussen header en intro */
.intro-section {
    margin-top: 20px !important;
}

/* Gemeenschappelijke styling voor de containers */
.header {
    max-width: 1400px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 2rem !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    margin: 0 auto !important;
}

/* Reset voor mogelijke parent containers */
body > .content-container {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Zorg dat alle hoofdcontainers dezelfde breedte en uitlijning hebben */
.header-section,
.intro-section,
.content-container,
.login-container {
    width: 100% !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .header-section,
    .intro-section,
    .content-container,
    .login-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .content-container {
        flex-direction: column;
    }
}

/* Consistente container breedte voor header, intro en content */
.header-section,
.intro-section,
.content-container {
    width: 100% !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* Tiles container met dezelfde breedte */
.tiles-container {
    width: 100% !important;
    margin: 20px 0 !important;
    padding: 20px !important;
    background: white !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 20px rgba(47, 113, 184, 0.1) !important;
}

/* Flex container voor tijdlijn en blogs */
.timeline-blog-container {
    display: flex !important;
    gap: 20px !important;
    margin: 0 !important;
}

/* Tijdlijn styling (75% breedte) */
.timeline-section {
    flex: 3 !important; /* 75% van de beschikbare ruimte */
    background: white !important;
    border-radius: 15px !important;
    padding: 15px !important;
    box-shadow: 0 5px 20px rgba(47, 113, 184, 0.1) !important;
}

/* Blog sectie styling (25% breedte) */
.blog-section {
    flex: 1 !important; /* 25% van de beschikbare ruimte */
    background: white !important;
    border-radius: 15px !important;
    padding: 15px !important;
    box-shadow: 0 5px 20px rgba(47, 113, 184, 0.1) !important;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .timeline-blog-container {
        flex-direction: column !important;
    }
    
    .timeline-section,
    .blog-section {
        width: 100% !important;
    }
}

/* Wrapper voor volledige breedte met gecentreerde inhoud */
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* Volledige breedte containers met max-width */
.header-section,
.intro-section,
.content-container {
    width: 100vw !important; /* Gebruik volledige viewport breedte */
    max-width: 100% !important;
    margin: 0 !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
}

/* Inner containers voor maximale content breedte */
.header,
.tiles-container,
.timeline-blog-container {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* Behoud de bestaande timeline-blog layout */
.timeline-blog-container {
    display: flex !important;
    gap: 30px !important;
    margin: 30px auto !important;
}

.timeline-section {
    flex: 3 !important;
}

.blog-section {
    flex: 1 !important;
}

/* Basis container styling */
.header-section,
.intro-section,
.content-container {
    width: 100vw !important;
    display: flex !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

/* Inner container maximale breedte */
.header,
.content-wrapper {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* Tiles container styling */
.tiles-container {
    width: 100% !important;
    margin-bottom: 30px !important;
    box-sizing: border-box !important;
}

/* Scan group styling */
.scan-group {
    background: white !important;
    border-radius: 15px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 5px 15px rgba(47, 113, 184, 0.1) !important;
}

/* Grid layouts */
.scan-tiles-grid,
.other-tiles-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 20px !important;
}

/* Timeline en blog container */
.timeline-blog-container {
    display: flex !important;
    gap: 30px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.timeline-section {
    flex: 3 !important;
    background: white !important;
    border-radius: 15px !important;
    padding: 20px !important;
    box-shadow: 0 5px 15px rgba(47, 113, 184, 0.1) !important;
}

.blog-section {
    flex: 1 !important;
    background: white !important;
    border-radius: 15px !important;
    padding: 20px !important;
    box-shadow: 0 5px 15px rgba(47, 113, 184, 0.1) !important;
}

/* Consistente container breedtes */
.header-section,
.intro-section,
.content-container {
    width: 100vw !important;
    display: flex !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    background: #f5f7fa !important;
}

/* Inner containers met maximale breedte */
.header,
.content-wrapper {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* Tiles container aanpassing */
.tiles-container {
    width: 100% !important;
    margin-bottom: 30px !important;
    box-sizing: border-box !important;
}

/* Timeline en blog container */
.timeline-blog-container {
    width: 100% !important;
    display: flex !important;
    gap: 30px !important;
    box-sizing: border-box !important;
}

/* Netwerk showcase styling */
.network-showcase {
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(47, 113, 184, 0.1);
}

/* Gradient border bovenaan */
.network-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2f71b8 0%, #28a745 100%);
}

/* Flex container voor de twee helften */
.network-showcase-content {
    display: flex;
    min-height: 400px;
    max-height: 500px;
}

/* Linker helft met tekst */
.network-showcase-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.05) 0%,
        rgba(40, 167, 69, 0.05) 100%);
}

.network-showcase-text h2 {
    color: #2f71b8;
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.network-showcase-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.network-showcase-text .highlight {
    font-style: italic;
    color: #28a745;
    font-weight: 500;
}

/* Rechter helft met netwerk atom */
.network-showcase-visual {
    flex: 1;
    position: relative;
    background: white;
    overflow: hidden;
}

/* Responsive aanpassingen */
@media (max-width: 1024px) {
    .network-showcase-content {
        flex-direction: column;
        max-height: none;
    }
    
    .network-showcase-visual {
        height: 400px;
    }
}

/* Update network-showcase styling */
.network-showcase {
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

/* Gradient border rondom */
.network-showcase::before {
    content: '';
    position: absolute;
    inset: 0; /* Dit vervangt top/left/right/bottom: 0 */
    border: 4px solid transparent;
    border-radius: 20px;
    background: linear-gradient(90deg, #2f71b8, #28a745) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

.network-showcase-visual {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.97) 0%,
        rgba(26, 74, 143, 0.97) 45%,
        rgba(58, 170, 53, 0.97) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Nieuwe styling voor de login sectie */
.login-section {
    display: flex;
    align-items: stretch;
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.login-container {
    flex: 2; /* Verhoogd van 1 naar 2 om meer ruimte te nemen */
    margin: 0 !important;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(47, 113, 184, 0.1);
    padding: 30px !important;
    width: auto; /* Verwijder vaste breedte */
    min-width: 400px; /* Minimale breedte voor kleine schermen */
}

.network-preview {
    flex: 1; /* Blijft 1 om minder ruimte in te nemen dan login */
    position: relative;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.97) 0%,
        rgba(26, 74, 143, 0.97) 45%,
        rgba(58, 170, 53, 0.97) 100%);
    border-radius: 20px;
    overflow: visible; /* Aangepast van hidden naar visible */
    color: white;
    padding: 30px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.network-preview-content {
    position: absolute;
    z-index: 2;
    padding: 20px;
    background: rgba(255, 235, 144, 0.95); /* Gele transparante kleur */
    border-radius: 8px;
    color: #333;
    width: 250px; /* Smaller gemaakt */
    right: -100px;
    top: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

/* Verwijder alle pseudo-elementen die mogelijk het hoekje creëren */
.network-preview-content::after,
.network-preview-content::before {
    display: none !important;
}

.network-preview-content:hover {
    transform: rotate(1deg) translateY(-5px);
}

.network-preview-content h2 {
    font-size: 1.1em; /* Iets kleinere tekst */
    margin-bottom: 10px;
    color: #2f71b8;
    font-weight: 600;
}

.network-preview-content p {
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 0.8em; /* Kleinere tekst */
    color: #555;
}

.network-preview-content p:last-child {
    font-style: italic;
    color: #3aaa35;
}

.network-atom-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8; /* Verhoogde opacity voor betere zichtbaarheid */
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .login-section {
        flex-direction: column;
    }
    
    .login-container {
        width: 100%;
    }
    
    .network-preview-content {
        width: 280px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .network-preview-content {
        position: relative;
        width: 90%;
        right: 0;
        margin: 20px auto;
        transform: none;
    }
    
    .network-preview-content:hover {
        transform: translateY(-5px);
    }
}

/* Consistente container breedtes */
.header-section,
.intro-section,
.login-section,
.content-container {
    width: 100vw !important;
    display: flex !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    background: #f5f7fa !important;
}

/* Inner containers met maximale breedte */
.header,
.login-section-inner,
.content-wrapper {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* Login section specifieke styling */
.login-section-inner {
    display: flex;
    gap: 30px;
    align-items: stretch;
    position: relative; /* Voor absolute positionering van uitstekende elementen */
    overflow: visible; /* Zorgt dat uitstekende elementen zichtbaar blijven */
}

.login-container {
    flex: 3; /* Iets kleiner deel van de ruimte */
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(47, 113, 184, 0.1);
    padding: 30px !important;
}

.network-preview {
    flex: 2; /* Groter deel van de ruimte voor network preview */
    position: relative;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.97) 0%,
        rgba(26, 74, 143, 0.97) 45%,
        rgba(58, 170, 53, 0.97) 100%);
    border-radius: 20px;
    overflow: visible;
    padding: 30px;
    min-height: 500px;
}

.network-preview-content {
    position: absolute;
    z-index: 2;
    padding: 20px;
    background: rgba(255, 235, 144, 0.95);
    border-radius: 8px;
    color: #333;
    width: 250px; /* Smaller gemaakt */
    right: -100px; /* Verder naar rechts laten uitsteken */
    top: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .login-section-inner {
        flex-direction: column;
    }
    
    .network-preview-content {
        right: -20px; /* Minder ver uitsteken op kleinere schermen */
    }
}

.content-wrapper {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    padding-top: 40px !important; /* Voeg verticale ruimte toe */
}

.tiles-container {
    margin-top: 5px !important; /* Consistente ruimte boven de tiles */
}

/* Voor de scan-group binnen tiles-container */
.scan-group {
    margin-bottom: 40px !important; /* Consistente ruimte onder de scan group */
}

/* Tekst container */
.intro-text {
    flex: 1 !important;
    margin-bottom: 0 !important; /* Verwijder extra marge */
}

.teaser-content {
    margin-bottom: 0 !important; /* Verwijder extra marge */
}

/* Knop styling */
.expand-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: transparent !important;
    border: none !important;
    color: #2f71b8 !important;
    cursor: pointer !important;
    padding: 10px 20px !important;
    margin-top: 10px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border-radius: 5px !important;
}

.expand-btn:hover {
    color: #3aaa35 !important;
    background: rgba(47, 113, 184, 0.1) !important;
}

/* Uitklapbare content */
.expandable-content {
    margin-top: 15px !important;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease !important;
}

.expandable-content.show {
    display: block !important;
    opacity: 1 !important;
}

/* Afbeelding container */
.intro-image {
    flex: 0 0 400px !important;
    margin: 0 !important;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 
        0 10px 20px rgba(47, 113, 184, 0.1),
        0 20px 40px rgba(47, 113, 184, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.intro-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Glans effect */
.intro-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 15px;
    pointer-events: none;
}



.teaser-content,
.expandable-content {
    margin-bottom: 20px;
}

.expand-btn {
    background: none;
    border: none;
    color: #2f71b8;
    cursor: pointer;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.expand-btn:hover {
    color: #3aaa35;
}

.expandable-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expandable-content.show {
    display: block;
    opacity: 1;
}

.intro-text {
    flex: 1 !important;
    position: relative !important;
}

.intro-image {
    flex: 0 0 300px !important; /* Kleiner in ingeklapte staat */
    transition: all 0.3s ease !important;
}

.intro-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 20px rgba(47, 113, 184, 0.1) !important;
    transition: all 0.3s ease !important;
}

/* Knop styling zoals eerder */
.expand-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #2f71b8 !important;
    background: rgba(47, 113, 184, 0.1) !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    margin-top: 15px !important;
    transition: all 0.3s ease !important;
}

.expand-btn:hover {
    background: rgba(47, 113, 184, 0.2) !important;
}

.intro-text {
    flex: 1 !important;
    position: relative !important;
    padding: 20px !important;
}

.intro-quote {
    position: relative !important;
    margin: 30px 40px 20px 60px !important;
    padding: 30px 30px 30px 50px !important;
    font-size: 1.1em !important;
    line-height: 1.6 !important;
    color: #333 !important;
    background: white !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Quote teken styling */
.intro-quote::before {
    content: '"' !important;
    position: absolute !important;
    left: -40px !important;
    top: 20px !important;
    font-size: 5em !important;
    color: white !important; /* Wit tegen de blauwe achtergrond */
    font-family: Georgia, serif !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) !important;
    z-index: 1 !important;
}

/* Uitklapbare content styling */
.expandable-content {
    display: none;
    color: white !important; /* Zorg dat de uitgeklapte tekst wit is */
    margin: 20px 40px !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
}



/* Shimmer animatie */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.intro-image {
    flex: 0 0 300px !important;
    align-self: center !important; /* Zorgt dat de foto gecentreerd blijft */
}

.intro-text {
    flex: 1 !important;
}

.intro-text h2 {
    color: white !important;
    margin-bottom: 20px !important; /* Verkleind van 30px naar 20px */
}

.intro-quote {
    position: relative !important;
    margin: 0 40px 20px 40px !important; /* Verwijderde top margin */
    padding: 25px 30px !important; /* Verkleinde padding */
    font-size: 1.1em !important;
    line-height: 1.5 !important; /* Verkleind van 1.6 naar 1.5 */
    border-radius: 15px !important;
    background: white !important;
    color: #333 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.expandable-content {
    margin: 20px 40px !important;
    padding: 30px !important;
    color: #333 !important; /* Zwarte tekst */
    background: white !important; /* Witte achtergrond */
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.expandable-content h3, 
.expandable-content h4,
.expandable-content p,
.expandable-content ul,
.expandable-content li {
    color: #333 !important; /* Zwarte tekst */
}

.intro-image {
    flex: 0 0 300px !important;
    align-self: center !important;
}

.intro-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* CTA sectie */
.cta-section {
    margin: 30px 0 0 0 !important;
    padding: 20px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    text-align: center !important;
}

.cta-button {
    display: inline-block !important;
    padding: 12px 24px !important;
    background: linear-gradient(135deg, #2f71b8 0%, #3aaa35 100%) !important;
    color: white !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    margin-top: 15px !important;
    transition: all 0.3s ease !important;
    border: 2px solid white !important;
}

.cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

.intro-text {
    flex: 1 !important;
    color: white !important;
}

.intro-text h2 {
    color: white !important;
    margin-bottom: 15px !important; /* Nog kleiner */
}

/* Ingeklapte tekst - compacter */
.intro-quote {
    position: relative !important;
    margin: 0 40px 15px 40px !important; /* Kleinere margin */
    padding: 20px !important; /* Compactere padding */
    font-size: 1.1em !important;
    line-height: 1.4 !important; /* Compactere line-height */
    border-radius: 15px !important;
    background: white !important;
    color: #333 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.intro-quote p {
    margin-bottom: 10px !important; /* Kleinere ruimte tussen paragrafen */
}

.intro-quote p:last-child {
    margin-bottom: 0 !important;
}

/* Uitgeklapte content - zelfde stijl als intro-quote */
#expandableContent {
    margin: 0 40px !important; /* Zelfde marge als intro-quote */
    width: calc(100% - 80px) !important; /* Volledige breedte minus marges */
}

.expandable-content {
    background: white !important;
    color: #333 !important;
    padding: 20px !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Knop positie */
.expand-btn {
    margin: 15px 40px !important; /* Kleinere margin */
}

/* 🧡 MODERNE ORANJE INTRO TEKST STYLING */
.intro-text h2 {
    color: white !important; /* Wit voor contrast op oranje */
    margin-bottom: 20px !important;
    font-size: 2.6em !important; /* Grote, impactvolle tekst */
    font-weight: 700 !important; /* Dik lettertype */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important; /* Subtiele schaduw voor leesbaarheid */
    letter-spacing: -0.02em !important; /* Compactere letterspatiëring */
    line-height: 1.2 !important;
    position: relative !important;
}

/* Algemene intro tekst styling */  
.intro-text {
    flex: 1 !important;
    color: white !important; /* Witte tekst voor contrast */
    position: relative !important;
    z-index: 2 !important; /* Zorg dat tekst boven achtergrond blijft */
}

/* 🎨 AANPASSINGEN VOOR BESTAANDE INTRO ELEMENTEN */
.intro-left, .intro-right {
    flex: 1 !important;
    z-index: 10 !important; /* Boven de energiedeeltjes */
    position: relative !important;
}

.intro-right {
    flex: 1 !important;
    z-index: 10 !important; /* Boven de energiedeeltjes */
    position: relative !important;
}

.intro-right {
    display: flex !important; /* Flexbox voor centrering */
    align-items: center !important; /* Verticaal centreren */
    justify-content: center !important; /* Horizontaal centreren */
    margin-right: 40px !important; /* Mooie rechtermarge voor video */
}

.intro-image-container, .intro-video-container {
    position: relative !important;
    z-index: 10 !important;
}

.intro-video-container {
    /* Verwijder max-width en margin-right voor betere centrering */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Responsive aanpassingen voor nieuwe layout */
@media (max-width: 768px) {
    .intro-content-wrapper {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .intro-container-title h2 {
        font-size: 1.8em !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .intro-container {
        padding: 40px 20px 30px 20px !important;
    }
    
    /* Extra video centrering voor mobiel */
    .intro-right {
        margin-right: 0 !important; /* Geen rechtermarge op mobiel */
        padding: 20px !important; /* Padding voor breathing room */
    }
    
    .intro-video-container {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .intro-video-container video {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Quote tekst styling */
.intro-quote p {
    margin-bottom: 12px !important;
    color: #333 !important; /* Donkere tekst voor leesbaarheid op lichte achtergrond */
}

.intro-quote p:last-child {
    margin-bottom: 0 !important;
}

.intro-quote p {
    margin-bottom: 8px !important; /* EXTRA kleine ruimte tussen paragrafen */
}

.intro-quote p:last-child {
    margin-bottom: 0 !important;
}

/* 🧡 ORANJE EXPANDABLE CONTENT - Lichte theme */
.expandable-content {
    background: rgba(255, 255, 255, 0.95) !important; /* Lichte achtergrond */
    backdrop-filter: blur(10px) !important;
    color: #333 !important; /* Donkere tekst voor leesbaarheid */
    padding: 30px !important; /* Comfortabele padding */
    border-radius: 20px !important; /* Ronde hoeken */
    box-shadow: 
        0 15px 30px rgba(255, 107, 53, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    margin: 0 40px !important;
}

/* Tekst styling binnen expandable content */
.expandable-content h3, 
.expandable-content h4,
.expandable-content p,
.expandable-content ul,
.expandable-content li {
    color: #333 !important; /* Donkere tekst voor leesbaarheid */
}

.expandable-content h3 {
    color: #ff6b35 !important; /* Oranje accent kleur */
    font-weight: 600 !important;
}

.expandable-content h4 {
    color: #f7931e !important; /* Donker oranje accent */
    font-weight: 500 !important;
}

/* Moderne headers in uitgeklapte content */
.expandable-content h3 {
    color: #2f71b8 !important; /* Huisstijl blauw */
    font-size: 1.4em !important;
    margin: 25px 0 15px !important;
    border-bottom: 2px solid rgba(47, 113, 184, 0.1) !important;
    padding-bottom: 10px !important;
}

.expandable-content h4 {
    color: #3aaa35 !important; /* Huisstijl groen */
    font-size: 1.2em !important;
    margin: 20px 0 10px !important;
}

/* Moderne lijst styling */
.expandable-content ul {
    margin: 15px 0 !important;
    padding-left: 0 !important;
    list-style: none !important;
}

.expandable-content li {
    position: relative !important;
    padding-left: 25px !important;
    margin: 8px 0 !important;
    color: #333 !important;
}

.expandable-content li:before {
    content: '→' !important;
    position: absolute !important;
    left: 0 !important;
    color: #3aaa35 !important; /* Huisstijl groen */
}

/* Moderne CTA sectie */
.cta-section {
    margin: 25px 0 0 0 !important;
    padding: 20px !important;
    background: linear-gradient(135deg, rgba(47, 113, 184, 0.05) 0%, rgba(58, 170, 53, 0.05) 100%) !important;
    border-radius: 10px !important;
    text-align: center !important;
}

.cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 30px !important;
    background: linear-gradient(135deg, #2f71b8 0%, #3aaa35 100%) !important;
    color: white !important;
    border: 2px solid white !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

/* 🧡 ORANJE KNOP STYLING - Simpel en elegant */
.expand-btn {
    margin: 20px 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 107, 53, 0.5) !important;
    border-radius: 25px !important; /* Ronde knop */
    color: #ff6b35 !important; /* Oranje tekst */
    font-weight: 600 !important;
    font-size: 0.9em !important;
    cursor: pointer !important;
    box-shadow: 
        0 8px 20px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.intro-text {
    flex: 1 !important;
}

.intro-text h2 {
    color: white !important;
    font-size: 1.6em !important;
    margin-bottom: 8px !important; /* EXTRA klein */
}

/* SUPER compacte ingeklapte tekst */
.intro-quote {
    position: relative !important;
    margin: 0 40px 8px 40px !important; /* EXTRA kleine margin */
    padding: 12px 20px !important; /* EXTRA compacte padding */
    font-size: 0.95em !important; /* Kleinere tekst */
    line-height: 1.2 !important; /* EXTRA compacte line-height */
    background: white !important;
    color: #333 !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.intro-quote p {
    margin-bottom: 6px !important; /* EXTRA kleine ruimte tussen paragrafen */
}

.intro-quote p:last-child {
    margin-bottom: 0 !important;
}

/* Originele knop styling met witte rand */
.expand-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: white !important;
    background: linear-gradient(135deg, #2f71b8 0%, #3aaa35 100%) !important;
    border: 2px solid white !important; /* Witte rand */
    padding: 10px 20px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin: 8px 40px !important; /* EXTRA kleine margin */
    transition: all 0.3s ease !important;
}

.expand-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(47, 113, 184, 0.3) !important;
}

/* Uitgeklapte content styling */
.expandable-content {
    background: white !important;
    color: #333 !important;
    padding: 25px !important;
    margin: 0 40px !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.expandable-content h3 {
    color: #2f71b8 !important;
    font-size: 1.4em !important;
    margin: 25px 0 15px !important;
    border-bottom: 2px solid rgba(47, 113, 184, 0.1) !important;
    padding-bottom: 10px !important;
}

.expandable-content h4 {
    color: #3aaa35 !important;
    font-size: 1.2em !important;
    margin: 20px 0 10px !important;
}

.expandable-content ul {
    margin: 15px 0 !important;
    padding-left: 0 !important;
    list-style: none !important;
}

.expandable-content li {
    position: relative !important;
    padding-left: 25px !important;
    margin: 8px 0 !important;
}

.expandable-content li:before {
    content: '→' !important;
    position: absolute !important;
    left: 0 !important;
    color: #3aaa35 !important;
}

.intro-image {
    flex: 0 0 300px !important;
    align-self: center !important;
}

.intro-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* 🧡 ORANJE AFBEELDING STYLING - Elegant en warm */
.intro-image {
    flex: 0 0 300px !important; /* Comfortabele grootte */
    position: relative !important;
    align-self: center !important;
}

.intro-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 20px !important; /* Ronde hoeken */
    box-shadow: 
        0 15px 30px rgba(255, 107, 53, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    filter: brightness(1.05) contrast(1.05) !important; /* Subtiele verbetering */
}

/* Nieuwe intro layout - twee kolommen */
.intro-top-section {
    padding: 30px 0 !important;
    margin-bottom: 0 !important;
}

.intro-layout {
    display: flex !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    gap: 40px !important;
    align-items: flex-start !important;
}

/* Links: Afbeelding container - exact 50% */
.intro-left {
    width: 50% !important;
    flex: 0 0 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 20px !important;
    box-shadow: none !important;
    min-height: 400px !important;
}

.intro-image-container {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.intro-steps-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

/* Rechts: Video container - exact 50% */
.intro-right {
    width: 50% !important;
    flex: 0 0 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
    min-height: 400px !important;
    margin-right: 40px !important;
}

.intro-right .intro-quote {
    font-size: 1.4em !important;
    font-weight: 600 !important;
    color: #2F8A2A !important;
    background: #ffffff !important;
    padding: 40px 35px !important;
    border-radius: 20px !important;
    border: 3px solid #3AAA35 !important;
    line-height: 1.5 !important;
    text-align: center !important;
    position: relative !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 
                inset 0 1px 0 rgba(255, 255, 255, 1),
                0 4px 20px rgba(58, 170, 53, 0.15) !important;
    font-style: italic !important;
    transition: all 0.3s ease !important;
}

.intro-right .intro-quote:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 
                inset 0 1px 0 rgba(255, 255, 255, 1),
                0 6px 25px rgba(58, 170, 53, 0.25) !important;
    border-color: #45B840 !important;
}

.intro-right .intro-quote::before {
    content: '"' !important;
    position: absolute !important;
    top: -5px !important;
    left: 15px !important;
    font-size: 4em !important;
    font-family: 'Georgia', serif !important;
    color: #3AAA35 !important;
    font-style: normal !important;
    line-height: 1 !important;
    opacity: 0.7 !important;
}

.intro-right .intro-quote::after {
    content: '"' !important;
    position: absolute !important;
    bottom: -20px !important;
    right: 15px !important;
    font-size: 4em !important;
    font-family: 'Georgia', serif !important;
    color: #3AAA35 !important;
    font-style: normal !important;
    line-height: 1 !important;
    opacity: 0.7 !important;
}

/* Demonstratie knop - opvallend zakelijk design */
.network-discover-button {
    background: linear-gradient(135deg, 
        #2196F3 0%, 
        #1976D2 25%, 
        #1565C0 75%, 
        #0D47A1 100%) !important;
    color: white !important;
    border: none !important;
    padding: 22px 40px !important;
    border-radius: 15px !important;
    font-size: 1.1em !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.4), 
                inset 0 2px 0 rgba(255, 255, 255, 0.3), 
                inset 0 -2px 0 rgba(0, 0, 0, 0.1) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    position: relative !important;
    overflow: hidden !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.network-discover-button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.25), 
        transparent) !important;
    transition: left 0.6s !important;
}

.network-discover-button:hover::before {
    left: 100% !important;
}

.network-discover-button::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%) !important;
    border-radius: 15px !important;
    pointer-events: none !important;
}

.network-discover-button:hover {
    transform: translateY(-5px) scale(1.03) !important;
    box-shadow: 0 25px 60px rgba(33, 150, 243, 0.5), 
                inset 0 2px 0 rgba(255, 255, 255, 0.4), 
                inset 0 -2px 0 rgba(0, 0, 0, 0.1) !important;
    background: linear-gradient(135deg, 
        #42A5F5 0%, 
        #2196F3 25%, 
        #1976D2 75%, 
        #1565C0 100%) !important;
}

.network-discover-button:active {
    transform: translateY(-2px) scale(1.01) !important;
    transition: all 0.1s !important;
}

.network-discover-button .demo-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    font-size: 1.2em !important;
    width: 28px !important;
    height: 28px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
}

.network-discover-button:hover .demo-icon {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: scale(1.1) !important;
}

.network-discover-button .demo-icon::before {
    content: '\f04b' !important; /* FontAwesome play icon */
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    font-size: 0.9em !important;
    margin-left: 2px !important; /* Optische centrering van play-icoon */
}

/* Mobile responsive styling */
@media (max-width: 768px) {
    .intro-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 15px !important;
    }

    .intro-left {
        padding: 15px !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }

    .intro-right .intro-quote {
        font-size: 1.1em !important;
        padding: 30px 25px !important;
    }

    .intro-right .intro-quote::before,
    .intro-right .intro-quote::after {
        font-size: 3em !important;
    }

    .intro-right .intro-quote::before {
        top: 0px !important;
        left: 10px !important;
    }

    .intro-right .intro-quote::after {
        bottom: -15px !important;
        right: 10px !important;
    }

    .network-discover-button {
        padding: 18px 30px !important;
        font-size: 0.95em !important;
        gap: 12px !important;
    }

    .network-discover-button .demo-icon {
        width: 24px !important;
        height: 24px !important;
        font-size: 1.0em !important;
    }

    .special-offers-banner {
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .intro-top-section {
        padding: 20px 0 !important;
    }

    .intro-layout {
        gap: 20px !important;
        padding: 0 10px !important;
    }

    .intro-left {
        padding: 12px !important;
        max-width: 280px !important;
    }

    .intro-right .intro-quote {
        font-size: 1.0em !important;
        padding: 25px 20px !important;
    }

    .intro-right .intro-quote::before,
    .intro-right .intro-quote::after {
        font-size: 2.5em !important;
    }

    .intro-right .intro-quote::before {
        top: 2px !important;
        left: 8px !important;
    }

    .intro-right .intro-quote::after {
        bottom: -12px !important;
        right: 8px !important;
    }

    .network-discover-button {
        padding: 16px 25px !important;
        font-size: 0.9em !important;
        letter-spacing: 1px !important;
        gap: 10px !important;
    }

    .network-discover-button .demo-icon {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.9em !important;
    }
}

.intro-text {
    flex: 1 !important;
}

.intro-text h2 {
    color: white !important;
    font-size: 1.6em !important;
    margin-bottom: 8px !important;
}

.intro-quote {
    position: relative !important;
    margin: 0 40px 8px 40px !important;
    padding: 12px 20px !important;
    font-size: 0.95em !important;
    line-height: 1.2 !important;
    background: white !important;
    color: #333 !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.intro-image {
    flex: 0 0 300px !important;
}

.intro-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Uitgeklapte content */
#expandableContent {
    width: 100% !important;
}

.expandable-content {
    background: white !important;
    color: #333 !important;
    padding: 25px !important;
    margin: 0 40px !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Rest van de bestaande styling voor uitgeklapte content blijft hetzelfde */
.cta-section {
    text-align: center !important;
    margin-top: 30px !important;
    padding: 20px !important;
    background: rgba(47, 113, 184, 0.05) !important; /* Subtiele blauwe achtergrond */
}

.cta-section h4 {
    font-size: 24px !important;
    color: #2F71B8 !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
}

.cta-section p {
    font-size: 18px !important;
    color: #333 !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
}

/* Nieuwe styling voor de CTA tekst (vervangt de .cta-button class) */
.cta-text {
    display: inline-block !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #3AAA35 !important; /* BizzDom groen */
    padding: 15px 25px !important;
    background: rgba(58, 170, 53, 0.1) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.cta-text:hover {
    background: rgba(58, 170, 53, 0.15) !important;
    transform: translateY(-2px) !important;
}

.intro-top-section {
    gap: 15px !important; /* Kleinere gap tussen elementen */
    margin-bottom: 5px !important; /* Minimale ruimte naar de knop */
}

.intro-text h2 {
    margin-bottom: 8px !important; /* Kleinere ruimte onder titel */
    font-size: 22px !important; /* Iets kleinere titel */
}

.intro-quote p {
    margin-bottom: 6px !important; /* Kleinere ruimte tussen paragrafen */
    line-height: 1.4 !important; /* Compactere regelhoogte */
}

.intro-quote p:last-child {
    margin-bottom: 0 !important; /* Geen ruimte onder laatste paragraaf */
}

/* Compactere knop */
.expand-btn {
    margin: 5px 0 !important; /* Minimale verticale marges */
    padding: 6px 15px !important; /* Compactere knop */
}

.intro-top-section {
    gap: 15px !important;
    margin-bottom: 0 !important; /* Geen marge onder de top sectie */
}

/* Extra compacte knop styling */
.expand-btn {
    margin: 2px 0 !important; /* Minimale verticale marges */
    padding: 4px 12px !important; /* Nog compactere padding */
    font-size: 14px !important; /* Iets kleinere tekst */
    line-height: 1.2 !important; /* Compactere regelhoogte */
}

/* Zorg dat de icon in de knop ook compact blijft */
.expand-btn i {
    font-size: 12px !important;
    margin-left: 4px !important;
}

/* Container voor de network preview */
.network-preview {
    position: relative !important;
    display: flex !important;
    align-items: center !important; /* Verticale centrering */
    justify-content: center !important;
    min-height: 600px !important; /* Minimale hoogte voor de container */
}

/* Emoji styling voor benefits */
.benefit-emoji {
    font-size: 1.4em !important;
    margin-right: 10px !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.cta-emoji {
    font-size: 1.3em !important;
    margin-right: 8px !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Transparante afbeelding op gradient achtergrond */
.intro-image-container {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.steps-content h2 {
    color: white !important;
    font-size: 1.1em !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.2 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.steps-content p {
    display: flex !important;
    align-items: flex-start !important;
    color: white !important;
    font-size: 0.8em !important;
    line-height: 1.4 !important;
    margin: 8px 0 !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) !important;
}

.steps-content p:first-of-type {
    display: block !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 12px !important;
    text-align: left !important;
}

.steps-content p:last-of-type {
    display: block !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid white !important;
    border-radius: 8px !important;
    padding: 8px !important;
    color: white !important;
    font-weight: bold !important;
    margin-top: 12px !important;
    text-align: center !important;
}

/* Mooie CSS processtap badges */
.step-number {
    display: block !important;
    background: white !important;
    color: #2F8A2A !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    text-align: center !important;
    font-size: 12px !important;
    line-height: 24px !important;
    margin-right: 12px !important;
    font-weight: bold !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    font-family: Arial, sans-serif !important;
}

.step-number::before {
    content: attr(data-step) !important;
}

/* Tekst uitlijning voor stappen */
.steps-content p .step-text {
    flex: 1 !important;
    text-align: left !important;
}

/* Vaste afmetingen voor de network-atom container */
.network-atom-container {
    position: relative !important;
    width: 500px !important; /* Vaste breedte */
    height: 500px !important; /* Vaste hoogte */
    margin: 0 auto !important; /* Horizontale centrering */
}

/* Figuur styling met absolute positionering */
.network-atom-container figure {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Zorg dat de afbeelding de juiste verhoudingen behoudt */
.network-atom-container figure img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

/* Behoud de z-index voor de welcome note */
.welcome-note {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
}

/* Consistente container breedtes */
.header-section {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    background: #f5f7fa !important;
}

/* Header specifieke styling */
.header {
    width: 100% !important;
    max-width: 1400px !important; /* Zelfde als de header.png breedte */
    margin: 0 auto !important;
    box-sizing: border-box !important;
    position: relative !important;
}

.header img {
    width: 100% !important;
    height: auto !important;
    display: block !important; /* Verwijdert ongewenste witruimte onder de afbeelding */
    max-width: 1400px !important;
}

/* User welcome content aanpassingen */
.user-welcome-content {
    position: absolute !important;
    bottom: 0 !important; /* Verander 'top' naar 'bottom' */
    left: -20px !important; /* Compenseer voor de header-section padding */
    right: -20px !important; /* Compenseer voor de header-section padding */
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 15px 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Zorg dat de header container relative positioning heeft */
.header {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    position: relative !important;
    border-radius: 20px !important; /* Voeg ronde hoeken toe aan header */
    overflow: hidden !important; /* Zorgt dat de inhoud binnen de ronde hoeken blijft */
}

/* Styling voor de gebruikersinformatie */
.user-info {
    flex: 1 !important;
}

.user-info h3 {
    margin: 0 0 5px 0 !important;
    font-size: 16px !important;
    color: #2f71b8 !important;
}

.user-info span {
    font-size: 14px !important;
    color: #666 !important;
}

/* Styling voor de logout knop */
.logout-button {
    padding: 8px 15px !important;
    background: #f5f5f5 !important;
    border-radius: 5px !important;
    color: #333 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.logout-button:hover {
    background: #e5e5e5 !important;
}

/* Avatar styling */
.user-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f0f0f0 !important;
}

.user-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.avatar-placeholder {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #e0e0e0 !important;
    color: #999 !important;
}

/* Header container */
.header {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

.header {
    position: relative !important;
    display: flex !important; /* Maak flex container voor side-by-side layout */
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    background: white !important;
    border-radius: 20px !important;
    overflow: hidden !important;
}

.header-image {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important; /* Voorkom dat de afbeelding krimpt */
    flex: 0 0 60% !important;
    max-width: 60% !important; /* Beperk de breedte zodat er ruimte is voor login forms */
    width: 60% !important;
}

.header-image img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
}

.user-welcome-content {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important; /* Verander naar flex-end voor compacte layout */
    padding: 15px 30px !important;
    background: white !important;
    border-top: none !important; /* Verwijder border omdat het nu naast de afbeelding staat */
    position: relative !important;
    flex-grow: 1 !important; /* Neem de overgebleven ruimte */
    min-height: 80px !important; /* Zorg voor consistente hoogte */
}

/* Header section styling */
.header-section {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    background-color: #f5f7fa !important; /* Zelfde grijze achtergrondkleur als de pagina */
}

/* Basis achtergrondkleur voor de hele pagina */
html, 
body {
    background: linear-gradient(135deg,
        rgba(47, 113, 184, 0.97) 0%,    /* Donkerder blauw */
        rgba(26, 74, 143, 0.97) 45%,    /* Donkerder blauw */
        rgba(58, 170, 53, 0.97) 100%    /* Donkerder groen */
    ) !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Reset voor alle containers */
.header-section,
.header,
.content-container,
.navigation-section,
.blog-section,
.timeline-section,
.tiles-container {
    background: white !important;
    margin: 0 !important;
}

/* Alleen deze elementen behouden een witte achtergrond */
.user-welcome-content,
.tile {
    background: white !important;
}

/* Verwijder eventuele box-shadows die een witte achtergrond suggereren */
.header,
.content-container,
.navigation-section {
    box-shadow: none !important;
}

/* Maak content-container transparant */
.content-container,
.intro-section {
    background: transparent !important;
    box-shadow: none !important;
}

/* Geef individuele secties een witte achtergrond */
.header-section,
.navigation-section,
.blog-section,
.timeline-section,
.tiles-container,
.login-section {
    background: white !important;
    margin: 5px auto !important; /* Voeg wat ruimte toe tussen secties */
    border-radius: 20px !important; /* Voeg ronde hoeken toe */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Footer styling */
.site-footer {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 5px auto !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
}

.footer-content {
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    padding: 4px !important;
}

.footer-info {
    text-align: center !important;
}

.footer-main {
    margin-bottom: 4px !important;
}

.footer-main p {
    margin: 4px 0 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #333 !important;
}

.contact-info {
    font-size: 15px !important;
}

.contact-info span {
    font-weight: 600 !important;
    color: #2f71b8 !important; /* Huisstijl blauw */
}

.contact-info a {
    color: #28a745 !important; /* Huisstijl groen */
    text-decoration: none !important;
    transition: opacity 0.3s !important;
}

.contact-info a:hover {
    opacity: 0.8 !important;
}

.footer-legal {
    font-size: 14px !important;
    color: #666 !important;
}

.footer-legal p {
    margin: 0px 0 !important;
}

/* Nieuwe container structuur */
.tiles-and-network-container {
    display: flex !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
}

/* Aanpassing tiles container */
.tiles-container {
    flex: 0 0 calc(100% - 540px) !important; /* 500px voor atom + 40px gap */
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

/* Netwerk atom sectie */
.network-atom-section {
    flex: 0 0 500px !important;
    width: 500px !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.97) 0%,
        rgba(26, 74, 143, 0.97) 45%,
        rgba(58, 170, 53, 0.97) 100%) !important;
}

/* Aanpassing scan-tiles-grid */
.scan-tiles-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 kolommen i.p.v. 4 */
    gap: 20px !important;
}

/* Aanpassing other-tiles-grid */
.other-tiles-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 3 kolommen i.p.v. 5 */
    gap: 20px !important;
}

/* Gemeenschappelijke stijl voor groepen */
.tile-group {
    padding: 25px !important;
    border-radius: 20px !important;
    border: 2px solid transparent !important; /* iets dikkere rand voor betere zichtbaarheid */
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, 
            #2F71B8 0%,    /* Huisstijl blauw */
            #1A4A8F 50%,   /* Donkerder blauw */
            #3AAA35 100%)  /* Huisstijl groen */
        border-box !important;
    margin-bottom: 20px !important;
}

.group-title {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #2F71B8 !important;  /* Huisstijl blauw */
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.group-title i {
    color: #3AAA35 !important;  /* Huisstijl groen */
}

.post-its-container {
    position: relative !important;
    margin-top: 30px !important;
    min-height: 600px !important; /* Vaste minimale hoogte */
    width: 500px !important; /* Zelfde breedte als network atom */
}

.post-it {
    position: absolute !important;
    width: 400px !important; /* Nog iets breder */
    padding: 30px !important;
    background: #FFFAD1 !important;
    box-shadow: 3px 3px 12px rgba(0,0,0,0.2) !important;
    border-radius: 2px !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    transition: transform 0.2s ease !important;
}

/* Veel duidelijkere positionering en rotatie */
.post-it:nth-child(1) {
    transform: rotate(-6deg) !important;
    top: 20px !important;
    left: -20px !important;
    z-index: 3 !important;
}

.post-it:nth-child(2) {
    transform: rotate(4deg) !important;
    top: 200px !important; /* Veel meer ruimte tussen de post-its */
    left: 40px !important;
    z-index: 2 !important;
}

.post-it:nth-child(3) {
    transform: rotate(-5deg) !important;
    top: 380px !important; /* Nog meer ruimte naar beneden */
    left: -10px !important;
    z-index: 1 !important;
}

/* Hover effect voor interactiviteit */
.post-it:hover {
    transform: scale(1.02) rotate(0deg) !important;
    z-index: 4 !important;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3) !important;
}

.post-it h3 {
    color: #2F71B8 !important;
    font-size: 1.1rem !important;
    margin-bottom: 12px !important;
    font-weight: 600 !important;
}

.post-it p {
    margin-bottom: 15px !important;
}

.post-it .cta {
    color: #3AAA35 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: block !important;
    margin-top: 15px !important;
}

.network-section {
    flex: 0 0 500px !important;
    display: flex !important;
    flex-direction: column !important;
}

.network-atom-section {
    flex: 0 0 500px !important;
    width: 500px !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.97) 0%,
        rgba(26, 74, 143, 0.97) 45%,
        rgba(58, 170, 53, 0.97) 100%) !important;
}

.post-its-container {
    position: relative !important;
    margin-top: 30px !important;
    min-height: 600px !important;
    width: 500px !important;
}

.post-it {
    position: absolute !important;
    width: 320px !important; /* Nog smaller */
    padding: 15px !important; /* Nog minder padding */
    background: #FFFAD1 !important;
    box-shadow: 3px 3px 12px rgba(0,0,0,0.2) !important;
    border-radius: 2px !important;
    font-size: 1rem !important; /* Nog kleinere tekst */
    line-height: 1.5 !important; /* Nog compactere line-height */
    transition: transform 0.2s ease !important;
}

.post-it h3 {
    color: #2F71B8 !important;
    font-size: 0.95rem !important; /* Nog kleinere header */
    margin-bottom: 6px !important; /* Nog minder marge */
    font-weight: 600 !important;
}

.post-it p {
    margin-bottom: 8px !important; /* Nog minder marge */
}

.post-it .cta {
    color: #3AAA35 !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important; /* Nog kleinere CTA tekst */
    margin-top: 8px !important; /* Nog minder marge */
}

/* Aangepaste posities voor optimale spreiding */
.post-it:nth-child(1) {
    transform: rotate(-8deg) !important;
    top: 15px !important;
    left: 75px !important;
    z-index: 3 !important;
}

.post-it:nth-child(2) {
    transform: rotate(8deg) !important;
    top: 200px !important;
    left: 30px !important;
    z-index: 2 !important;
}

.post-it:nth-child(3) {
    transform: rotate(-2deg) !important;
    top: 375px !important;
    left: 75px !important;
    z-index: 1 !important;
}

/* Network preview styling */
.network-preview {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 600px !important;
    padding: 30px !important;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.97) 0%,
        rgba(26, 74, 143, 0.97) 45%,
        rgba(58, 170, 53, 0.97) 100%) !important;
    border-radius: 20px !important;
    color: white !important;
}

.network-preview-content {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.network-preview-content h2 {
    font-size: 2em !important;
    margin-bottom: 20px !important;
    color: white !important;
}

.network-preview-intro {
    font-size: 1.2em !important;
    margin-bottom: 30px !important;
    line-height: 1.6 !important;
    font-weight: 300 !important;
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 20px !important;
    border-radius: 15px !important;
    transition: transform 0.3s ease !important;
}

.benefit-item:hover {
    transform: translateY(-5px) !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

.benefit-item h3 {
    font-size: 1.2em !important;
    margin-bottom: 10px !important;
    color: #3AAA35 !important;
}

.benefit-item p {
    font-size: 0.95em !important;
    line-height: 1.5 !important;
}

.network-cta {
    font-size: 1.3em !important;
    font-weight: 600 !important;
    margin-top: 20px !important;
    padding: 15px 30px !important;
    background: white !important;
    color: #2F71B8 !important;
    border-radius: 10px !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.network-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Network preview styling */
.network-preview {
    padding: 15px !important;
    color: white !important;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.97) 0%,
        rgba(26, 74, 143, 0.97) 45%,
        rgba(58, 170, 53, 0.97) 100%) !important;
    border-radius: 20px !important;
    height: auto !important; /* Laat de hoogte bepalen door de inhoud */
    display: flex !important; /* Gebruik flexbox voor betere controle */
    flex-direction: column !important;
    justify-content: flex-start !important; /* Begin bovenaan */
    min-height: 0 !important; /* Verwijder minimale hoogte */
    max-height: fit-content !important; /* Maximale hoogte aanpassen aan inhoud */
}

.network-preview-content {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.network-preview-content h2 {
    font-size: 2em !important;
    margin-bottom: 20px !important;
    color: white !important;
}

.network-preview-intro {
    font-size: 1.2em !important;
    margin-bottom: 30px !important;
    line-height: 1.6 !important;
    font-weight: 300 !important;
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 20px !important;
    border-radius: 15px !important;
    transition: transform 0.3s ease !important;
}

.benefit-item:hover {
    transform: translateY(-5px) !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

.benefit-item h3 {
    font-size: 1.2em !important;
    margin-bottom: 10px !important;
    color: #3AAA35 !important;
}

.benefit-item p {
    font-size: 0.95em !important;
    line-height: 1.5 !important;
}

.network-cta {
    font-size: 1.3em !important;
    font-weight: 600 !important;
    margin-top: 20px !important;
    padding: 15px 30px !important;
    background: white !important;
    color: #2F71B8 !important;
    border-radius: 10px !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.network-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.network-preview {
    padding: 30px !important;
    color: white !important;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.97) 0%,
        rgba(26, 74, 143, 0.97) 45%,
        rgba(58, 170, 53, 0.97) 100%) !important;
    border-radius: 20px !important;
}

.network-preview h2 {
    font-size: 1.8em !important;
    margin-bottom: 20px !important;
}

.network-preview .intro {
    font-size: 1.2em !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
}

.network-preview .benefits-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 25px 0 !important;
}

.network-preview .benefits-list li {
    margin-bottom: 15px !important;
    line-height: 1.5 !important;
}

.network-preview .benefits-list strong {
    color: #3AAA35 !important;
    display: block !important;
    margin-bottom: 5px !important;
}

.network-preview .cta {
    font-size: 1.3em !important;
    font-weight: 600 !important;
    margin-top: 20px !important;
}

.network-preview {
    padding: 20px !important;
    color: white !important;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.97) 0%,
        rgba(26, 74, 143, 0.97) 45%,
        rgba(58, 170, 53, 0.97) 100%) !important;
    border-radius: 20px !important;
}

.network-preview h2 {
    font-size: 1.4em !important;
    margin-bottom: 10px !important;
}

.network-preview .intro {
    font-size: 0.95em !important;
    line-height: 1.4 !important;
    margin-bottom: 15px !important;
}

.network-preview .benefits-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
}

.network-preview .benefits-list li {
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    font-size: 0.9em !important;
}

.network-preview .cta {
    font-size: 1.1em !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
}

.network-preview {
    padding: 15px !important;  /* Nog kleinere padding */
    color: white !important;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.97) 0%,
        rgba(26, 74, 143, 0.97) 45%,
        rgba(58, 170, 53, 0.97) 100%) !important;
    border-radius: 20px !important;
}

.network-preview h2 {
    font-size: 1.4em !important;
    margin-bottom: 8px !important;  /* Kleinere marge */
}

.network-preview .intro {
    font-size: 0.95em !important;
    line-height: 1.3 !important;  /* Nog compactere line-height */
    margin-bottom: 10px !important;  /* Kleinere marge */
}

.network-preview .benefits-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 10px 0 !important;  /* Kleinere marge */
}

.network-preview .benefits-list li {
    margin-bottom: 6px !important;  /* Kleinere marge tussen items */
    line-height: 1.2 !important;  /* Nog compactere line-height */
    font-size: 0.9em !important;
}

.network-preview .benefits-list strong {
    color: #3AAA35 !important;
    display: inline !important;
    margin-right: 5px !important;
}

.network-preview .cta {
    font-size: 1.1em !important;
    font-weight: 600 !important;
    margin-top: 8px !important;  /* Kleinere marge */
    margin-bottom: 0 !important;  /* Geen marge onderaan */
}

/* Voeg deze nieuwe CSS regel toe om de juiste positionering te garanderen */
.intro-top-section {
position: relative !important; /* Zorgt dat de absolute positionering van de knop hierop gebaseerd is */
}

/* Stijling voor de ronde button */
.network-info-button {
/* Basis positionering */
position: absolute !important;
left: 900px !important;
top: 0px !important;
z-index: 1000 !important;

/* Afmetingen */
width: 120px !important;
height: 120px !important;

/* Vormgeving */
border-radius: 50% !important;
background: linear-gradient(135deg, 
    #FFFAD1 0%,
    #FFFAD1 50%,
    #FFF5B8 100%) !important;
border: none !important;
outline: 10px solid #69b42d !important;

/* Flex layout */
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;

/* Tekst styling */
color: #2F71B8 !important;
padding: 20px !important;
text-align: center !important;

/* Interactie */
cursor: pointer !important;
transition: all 0.3s ease !important;
overflow: hidden !important;

/* 3D effecten en schaduwen */
box-shadow: 
    /* 3D border effect */
    inset -3px -3px 8px rgba(0, 0, 0, 0.2),
    inset 3px 3px 8px rgba(255, 255, 255, 0.8),
    /* Outer glow */
    0 0 15px rgba(255, 255, 255, 0.5),
    /* 3D shadow */
    12px 12px 20px rgba(0, 0, 0, 0.4),
    6px 6px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Shine effect */
.network-info-button::before {
content: '' !important;
position: absolute !important;
top: -50% !important;
left: -50% !important;
width: 200% !important;
height: 200% !important;
background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.3) 30%,
    transparent 60%
) !important;
opacity: 0.4 !important;
transform: rotate(-45deg) !important;
transition: all 0.3s ease !important;
pointer-events: none !important;
}

/* Hover effecten */
.network-info-button:hover {
transform: perspective(1000px) rotateX(5deg) translateY(-5px) !important;
box-shadow: 
    /* 3D border effect */
    inset -3px -3px 8px rgba(0, 0, 0, 0.2),
    inset 3px 3px 8px rgba(255, 255, 255, 0.8),
    /* Enhanced outer glow on hover */
    0 0 20px rgba(255, 255, 255, 0.7),
    /* Enhanced 3D shadow */
    12px 16px 25px rgba(0, 0, 0, 0.45),
    6px 10px 12px rgba(0, 0, 0, 0.25) !important;
}

.network-info-button:hover::before {
opacity: 0.6 !important;
transform: rotate(-45deg) scale(1.2) !important;
}

/* Active state */
.network-info-button:active {
transform: perspective(1000px) rotateX(5deg) translateY(2px) !important;
box-shadow: 
    /* 3D border effect remains */
    inset -2px -2px 5px rgba(0, 0, 0, 0.2),
    inset 2px 2px 5px rgba(255, 255, 255, 0.8),
    /* Reduced glow and shadow when pressed */
    0 0 10px rgba(255, 255, 255, 0.4),
    8px 8px 15px rgba(0, 0, 0, 0.35),
    4px 4px 6px rgba(0, 0, 0, 0.2) !important;
}

/* Icon en tekst styling */
.network-info-button i {
font-size: 2.5em !important;
margin-bottom: 10px !important;
position: relative !important;
z-index: 1 !important;
}

.network-info-button span {
font-size: 1.1em !important;
font-weight: 600 !important;
line-height: 1.3 !important;
position: relative !important;
z-index: 1 !important;
}



.popup-quote {
    background: linear-gradient(135deg, rgba(47, 113, 184, 0.1) 0%, rgba(58, 170, 53, 0.1) 100%) !important;
    padding: 30px !important;
    border-radius: 15px !important;
    margin: 30px 0 !important;
    font-style: italic !important;
    font-size: 1.2em !important;
    color: #333 !important;
    text-align: center !important;
}

.popup-cta {
    text-align: center !important;
    color: #3AAA35 !important;
    font-size: 1.3em !important;
    font-weight: 600 !important;
    margin-top: 20px !important;
}

/* Voeg deze nieuwe CSS regel toe om de juiste positionering te garanderen */
.intro-top-section {
    position: relative !important; /* Zorgt dat de absolute positionering van de knop hierop gebaseerd is */
}

.intro-section {
    position: relative !important; /* Voor absolute positionering van de button */
}

.intro-section {
    position: relative !important;
}

/* Pas de hover aan zodat deze de puls-animatie overschrijft */
.network-info-button:hover {
    animation: none !important;
    transform: perspective(1000px) rotateX(5deg) translateY(-5px) !important;
    /* ... rest van de hover eigenschappen ... */
}

/* Sectie headers styling */
.popup-content h2 {
    text-align: center !important;
    font-size: 2em !important;
    color: #2F71B8 !important;
    margin: 40px 0 30px 0 !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid rgba(47, 113, 184, 0.2) !important;
    position: relative !important;
}

.popup-content h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #2F71B8, #3AAA35) !important;
}

/* CTA tekst styling */
.popup-cta {
    text-align: center !important;
    margin-top: 40px !important;
    padding: 30px !important;
    background: linear-gradient(135deg,
        rgba(47, 113, 184, 0.97) 0%,
        rgba(26, 74, 143, 0.97) 45%,
        rgba(58, 170, 53, 0.97) 100%) !important;
    border-radius: 15px !important;
    color: white !important;
    font-size: 1.4em !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Intro checklist container en styling */
.intro-checklist {
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.05) 0%,
        rgba(58, 170, 53, 0.05) 100%) !important;
    border-radius: 15px !important;
    padding: 20px 25px !important;
    margin: 20px 0 40px 0 !important;
}

.intro-checklist ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.intro-checklist li {
    position: relative !important;
    padding: 10px 10px 10px 35px !important;
    margin-bottom: 10px !important;
    color: #1A4A8F !important;
    font-size: 1.1em !important;
    line-height: 1.4 !important;
}

.intro-checklist li:last-child {
    margin-bottom: 0 !important;
}

.intro-checklist li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 10px !important;
    color: #3AAA35 !important;
    font-weight: bold !important;
    font-size: 1.2em !important;
}

.intro-checklist li:hover {
    background: rgba(47, 113, 184, 0.05) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

        /* Intro tekst styling */
.popup-content .intro-text {
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.05) 0%,
        rgba(58, 170, 53, 0.05) 100%) !important;
    border-radius: 15px !important;
    padding: 20px 25px !important;
    margin: 20px 0 20px 0 !important;
}

.popup-content .intro-text p {
    color: #1A4A8F !important;
    font-size: 1.1em !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

/* Video sectie styling */
.video-section {
    margin: 40px 0 !important;
    padding: 30px !important;
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.05) 0%,
        rgba(58, 170, 53, 0.05) 100%) !important;
    border-radius: 20px !important;
    border: 2px solid transparent !important;
    background-clip: padding-box !important;
    position: relative !important;
}

.video-section::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(135deg, 
        #2F71B8 0%,
        #1A4A8F 50%,
        #3AAA35 100%) !important;
    border-radius: 20px !important;
    z-index: -1 !important;
}

.video-section h3 {
    color: #2F71B8 !important;
    font-size: 1.4em !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    font-weight: 600 !important;
}

.video-container {
    position: relative !important;
    width: 100% !important;
    padding-bottom: 56.25% !important; /* 16:9 Aspect Ratio */
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.video-container iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 15px !important;
}

/* Hover effect voor de video container */
.video-container:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}  

.shared-by {
    font-size: 0.8em !important;
    color: #666 !important;
    margin-top: 5px !important;
    font-style: italic !important;
}

.legacy-access-bar {
    background: #f8f9fa;
    border: 1px solid rgba(47, 113, 184, 0.2);
    border-radius: 8px;
    padding: 12px 25px;
    margin: 20px auto; /* Verkleind van 40px naar 20px */
    max-width: 1200px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.legacy-access-bar:hover {
    background: #fff;
    border-color: rgba(47, 113, 184, 0.4);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.legacy-access-link {
    display: block;
    text-decoration: none;
    color: #1A4A8F;
}

.legacy-text {
    text-align: center;
    font-size: 0.9em; /* Verkleind van 1.1em naar 0.9em */
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px; /* Verkleind van 6px naar 4px */
}

.legacy-regular {
    color: #1A4A8F;
}

.legacy-emphasis {
    font-weight: 600;
    color: #2F71B8;
    background: rgba(47, 113, 184, 0.1);
    padding: 3px 6px; /* Verkleind van 4px 8px naar 3px 6px */
    border-radius: 4px;
}

.legacy-icon {
    margin-left: 8px;
    color: #3AAA35;
    transition: transform 0.3s ease;
}

.legacy-access-link:hover .legacy-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .legacy-text {
        font-size: 1em;
    }
    
    .legacy-access-bar {
        margin: 20px 15px;
        padding: 12px 20px;
    }
}
/* Sticker styling */
.tile {
    position: relative !important; /* Zorg dat de sticker correct gepositioneerd kan worden */
}

.tile-sticker {
    position: absolute !important;
    top: 5px !important;
    left: 0 !important;
    right: 0 !important;  /* Volledige breedte */
    background: linear-gradient(135deg, 
        #dc3545 0%,    /* Helderrood */
        #b02a37 100%)  /* Donkerder rood */ !important;
    color: white !important;
    padding: 8px 15px !important;
    font-size: 0.9em !important;
    font-weight: 600 !important;
    border-radius: 20px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2) !important;
    z-index: 10 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: 2px solid white !important;
    text-align: center !important;
    animation: sticker-pulse 2s infinite !important;
}

/* Verschillende sticker varianten met specifieke kleuren */
.tile-sticker.most-chosen {
    background: linear-gradient(135deg, 
        #dc3545 0%,    /* Helderrood */
        #b02a37 100%)  /* Donkerder rood */ !important;
}

.tile-sticker.new {
    background: linear-gradient(135deg, 
        #dc3545 0%,    /* Helderrood */
        #b02a37 100%)  /* Donkerder rood */ !important;
}

/* Aangepaste puls animatie */
@keyframes sticker-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.network-info-button .click-indicator {
    position: absolute;
    right: -15px;
    bottom: -10px;
    font-size: 0.9em;
    color: #2f71b8;
    animation: clickBounce 1.5s infinite;
    transform-origin: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

@keyframes clickBounce {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-3px, -3px) rotate(-10deg);
    }
    75% {
        transform: translate(-1px, -1px) rotate(-5deg);
    }
}

.network-info-button:hover .click-indicator {
    animation-play-state: paused;
}

.network-info-button {
    position: relative;
    /* ... bestaande button styling ... */
}

.button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px; /* Verkleind van 8px naar 4px voor minder ruimte tussen icoon en tekst */
}

.network-info-button .click-indicator {
    position: absolute;
    right: -15px;
    bottom: -10px;
    font-size: 0.9em;
    color: #2f71b8;
    animation: clickBounce 1.5s infinite;
    transform-origin: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

@keyframes clickBounce {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-3px, -3px) rotate(-10deg);
    }
    75% {
        transform: translate(-1px, -1px) rotate(-5deg);
    }
}

.network-info-button:hover .click-indicator {
    animation-play-state: paused;
} 

/* Voeg deze nieuwe CSS regels toe voor het stroomschema */
.flow-chart {
    padding: 30px;
    background: white;
    border-radius: 15px;
    margin: 20px 0;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 100px;
    right: 100px;
    height: 2px;
    background: linear-gradient(90deg, #2F71B8, #3AAA35);
    z-index: 1;
    }

.main-step {
    flex: 1 !important;
    max-width: 220px !important;
    text-align: center !important;
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 10px !important;
    align-items: center !important;
}

/* Nieuwe lijn tussen icon en title */
.main-step::before {
    content: '' !important;
    position: absolute !important;
    top: 80px !important; /* Start vanaf onderkant icon */
    left: 50% !important;
    width: 2px !important;
    height: 30px !important; /* Afstand tussen icon en title */
    background: linear-gradient(to bottom, #2F71B8, #3AAA35) !important;
    transform: translateX(-50%) !important;
    z-index: 1 !important;
}        

/* Verticale lijn tussen title en sub-steps */
.main-step::after {
    content: '' !important;
    position: absolute !important;
    top: calc(95px + 80px) !important; /* 95px (icon) + 80px (title height) */
    left: 50% !important;
    width: 2px !important;
    height: 75px !important; /* Aangepaste hoogte voor de ruimte tussen title en sub-steps */
    background: linear-gradient(to bottom, #2F71B8, #3AAA35) !important;
    transform: translateX(-50%) !important;
    z-index: 1 !important;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2F71B8, #3AAA35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 2em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
    position: relative !important;
    z-index: 2 !important;  /* Zorgt dat de icon boven de lijn komt */            
}

.main-step:hover .step-icon {
    transform: translateY(-5px);
}

.step-title {
    color: #2F71B8 !important;
    font-weight: 600 !important;
    margin: 15px 0 !important;
    font-size: 1.1em !important;
    line-height: 1.3 !important;
    height: 80px !important; /* Vaste hoogte voor alle titles */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 15px !important;
    border-radius: 10px !important;
    border: 2px solid transparent !important;
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #2F71B8, #3AAA35) border-box !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.sub-steps {
    background: rgba(47, 113, 184, 0.05);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Verdeelt de ruimte tussen de items */
    margin-top: 15px;
    border: 2px solid transparent;
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #2F71B8, #3AAA35) border-box;
    min-height: 160px; /* Voeg minimale hoogte toe voor gelijke uitlijning */
    margin-top: 30px !important; /* Consistente afstand vanaf step-title */
    position: relative !important;
    z-index: 2 !important;
}

.sub-step {
    margin-bottom: 15px;
    padding: 12px 15px 12px 40px;
    position: relative;
    font-size: 0.85em; /* Iets kleinere tekst */
    color: #1A4A8F;
    line-height: 1.4;
    text-align: left;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
    word-wrap: break-word; /* Zorgt ervoor dat lange woorden afbreken */
    hyphens: auto; /* Voegt koppeltekens toe waar nodig */
    height: 45px; /* Vaste hoogte voor alle sub-steps */
    display: flex;
    align-items: center; /* Centreert de tekst verticaal */
}

.sub-step:last-child {
    margin-bottom: 0;
}

.sub-step:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sub-step i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #3AAA35;
    font-size: 1.1em;
}

/* Quote styling */
.flow-chart-quote {
    text-align: center;
    margin-bottom: 40px;
    padding: 25px;
    width: 60%; /* Verkleind van 75% naar 60% */
    background: linear-gradient(135deg,
        rgba(47, 113, 184, 0.97) 0%,
        rgba(26, 74, 143, 0.97) 45%,
        rgba(58, 170, 53, 0.97) 100%);
    border-radius: 15px;
    color: white;
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.flow-chart-quote::before,
.flow-chart-quote::after {
    content: '"';
    position: absolute;
    font-size: 4em;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.flow-chart-quote::before {
    top: -10px;
    left: 10px;
}

.flow-chart-quote::after {
    bottom: -30px;
    right: 10px;
}
.special-offers-banner {
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.9) 0%,
        rgba(26, 74, 143, 0.9) 45%,
        rgba(58, 170, 53, 0.9) 100%) !important;
    border-radius: 12px !important;
    padding: 15px 25px !important;
    margin: 20px auto 30px auto !important;
    max-width: 1200px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    border: 2px solid white !important;
    width: 100% !important; /* Volle breedte binnen de container */
    display: block !important; /* Zorgt ervoor dat het een block element is */
    box-sizing: border-box !important; /* Zorgt ervoor dat padding en border binnen de width vallen */
    clear: both !important; /* Zorgt ervoor dat het onder alle zwevende elementen komt */
}

.special-offers-banner::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    ) !important;
    animation: shine 3s linear infinite !important;
    z-index: 1 !important;
}

@keyframes shine {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

.special-offers-content {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

.special-offers-icon {
    font-size: 2em !important;
    color: white !important;
    animation: pulse 2s infinite !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.special-offers-text {
    color: white !important;
    font-size: 1.4em !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.special-offers-button {
    background-color: white !important;
    color: #2F71B8 !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.special-offers-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    background-color: #f8f8f8 !important;
}        

/* Styling voor ondernemerschapsbevordering sectie */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    cursor: pointer;
}

.checkbox-item:hover {
    background: #e3f2fd;
    border-color: #2f71b8;
}

.checkbox-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #2f71b8;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-item input[type="checkbox"]:checked {
    background-color: #2f71b8;
    border-color: #2f71b8;
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.item-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 10px;
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

textarea:focus {
    border-color: #2f71b8;
    outline: none;
    box-shadow: 0 0 0 2px rgba(47, 113, 184, 0.2);
}

.form-section-title {
    color: #2f71b8;
    font-size: 1.2em;
    font-weight: 600;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2f71b8;
}
/* Styling voor het nieuwe testimonials menu-item */
.testimonials-icon {
    background: linear-gradient(135deg, #FF8008 0%, #FFC837 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
}

.menu-link:hover .testimonials-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.5);
}

.menu-container {
    position: relative;
    width: 100%;
    background: white;
    box-shadow: 0 5px 20px rgba(47, 113, 184, 0.1);
    z-index: 100;
}

.testimonials-icon i {
    font-size: 20px;
}

/* Toevoegen van een badge aan de knop om aandacht te trekken */
.menu-link {
    position: relative;
}

.menu-link .testimonials-icon::after {
    content: 'Nieuw';
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Quote Banner Styling - Opvallender en net zo breed als header */
.quote-banner {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto 40px auto; /* Gelijke afstand boven en onder */
    padding: 0;
    box-sizing: border-box;
}

.quote-banner-content {
    background: linear-gradient(135deg, 
        rgba(47, 113, 184, 0.97) 0%,    /* Donker blauw */
        rgba(26, 74, 143, 0.97) 25%,   /* Overgang */
        rgba(58, 170, 53, 0.97) 75%,   /* Overgang */
        rgba(34, 139, 34, 0.97) 100%);   /* Donker groen */
    border-radius: 25px;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(47, 113, 184, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.3s ease;
}

.quote-banner-content:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-2px);
    box-shadow: 
        0 20px 40px rgba(47, 113, 184, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.quote-banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.quote-banner-content::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.3), 
        transparent 30%, 
        transparent 70%, 
        rgba(255,255,255,0.3));
    border-radius: 27px;
    z-index: -1;
}

.quote-text {
    position: relative;
    color: white;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.8px;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.5),
        0 0 20px rgba(255,255,255,0.2);
    font-family: 'Inter', sans-serif;
}

.quote-icon {
    font-size: 22px;
    opacity: 0.9;
    margin: 0 12px;
    vertical-align: top;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.quote-icon:first-child {
    margin-right: 18px;
}

.quote-icon:last-child {
    margin-left: 18px;
}



/* Responsief Design */
@media (max-width: 768px) {
    .intro-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .intro-left, .intro-right {
        width: 100% !important;
        flex: none !important;
        min-height: 250px !important;
    }
    
    .intro-buttons-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .intro-buttons-container .network-discover-button,
    .intro-buttons-container .special-offers-banner.network-style {
        width: 100%;
        max-width: 300px;
        height: 80px;
    }
}

/* Intro layout - beide elementen verticaal gecentreerd */
.intro-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.intro-left,
.intro-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Afbeelding styling met hover overlay */
.intro-image-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.intro-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.intro-steps-image {
    width: 560px;
    height: 560px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Video container styling met hover overlay */
.intro-video-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.intro-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.intro-video-container video {
    width: 100% !important;
    max-width: 560px !important; /* Maximale breedte op desktop */
    height: auto !important; /* Automatische hoogte voor aspect ratio */
    aspect-ratio: 1/1 !important; /* Vierkante video */
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block !important;
}

/* Compas overlay iconen */
.compass-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(47, 113, 184, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.intro-image-container:hover .compass-overlay,
.intro-video-container:hover .compass-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.compass-overlay i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Modal styling voor vergrotingsweergave */
.media-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    backdrop-filter: blur(5px);
}

#passwordResetModal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    backdrop-filter: blur(3px);
}

#passwordResetModal .modal-content {
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 320px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
}

#passwordResetModal .modal-header {
    margin: -20px -20px 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#passwordResetModal .modal-header h3 {
    font-size: 16px;
    margin: 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

#passwordResetModal .modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

#passwordResetModal .modal-body {
    padding: 0;
}

#passwordResetModal .modal-description {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

#passwordResetModal .form-row {
    margin-bottom: 15px;
}

#passwordResetModal .form-row label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

#passwordResetModal .form-row input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
}

#passwordResetModal .form-actions {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

#passwordResetModal .btn {
    flex: 1;
    height: 30px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#passwordResetModal .btn-secondary {
    background: #f0f0f0;
    color: #666;
}

#passwordResetModal .btn-primary {
    background: #2f71b8;
    color: white;
}

.modal-content img,
.modal-content video {
    width: 100%;
    height: auto;
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(47, 113, 184, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10000;
}

.modal-close:hover {
    background: rgba(58, 170, 53, 0.9);
    transform: rotate(90deg);
}

.modal-title {
    text-align: center;
    color: white;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .quote-banner-content {
        padding: 25px 35px;
        transform: none;
    }

    .quote-banner-content:hover {
        transform: translateY(-1px);
    }

    .quote-text {
        font-size: 20px;
        padding: 0 10px;
        letter-spacing: 0.4px;
    }

    .quote-icon {
        font-size: 16px;
        margin: 0 8px;
    }


}

@media (max-width: 480px) {
    .quote-banner-content {
        padding: 20px 25px;
        border-width: 2px;
    }

    .quote-text {
        font-size: 18px;
        letter-spacing: 0.3px;
    }

    .quote-icon {
        font-size: 14px;
        margin: 0 6px;
    }


}     
.event-banner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 40px auto;
    background: linear-gradient(90deg, #ffb347 0%, #ff5e62 100%);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(255, 94, 98, 0.15), 0 1.5px 0 rgba(255,255,255,0.15) inset;
    padding: 25px;
    position: relative;
    display: flex;
    align-items: stretch;
    z-index: 10;
    border: 4px solid #fff;
}
.event-banner-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 20px;
}

.event-banner-text {
    flex: 3;
    min-width: 0;
}

.event-banner-actions {
    flex: 1;
    min-width: 175px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-cta,
.event-info-link {
    width: 100%;
    max-width: 260px; /* Limiteer de breedte van de knoppen */
    text-align: center;
    box-sizing: border-box;
    margin-right: 0; /* Zorg dat ze niet buiten de kolom vallen */
}

.info-link {
    max-width: 260px; /* Limiteer ook de link zelf */
    width: 100%;
    box-sizing: border-box;
}

.event-banner-left {
    flex: 1 1 70%;
}
.event-title {
    font-size: 1.5em;
    font-weight: 800;
    color: #2f71b8;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 2px 8px rgba(255,94,98,0.15);
}
.event-title i {
    font-size: 1.2em;
    color: #fffbe7;
}
.event-subtitle {
    font-size: 1.15em;
    font-weight: 700;
    color: #2f71b8;
    margin-bottom: 8px;
    margin-left: 2.2em;
}
.event-datetime {
    font-size: 1.08em;
    color: #fffbe7;
    font-weight: 600;
    margin-bottom: 8px;
    margin-left: 2.2em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.event-datetime i {
    color: #fffbe7;
}
.event-tagline {
    font-size: 1.1em;
    color: #fffbe7;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.5;
    margin-left: 2.2em;
}
.event-price {
    font-size: 1.2em;
    color: #2f71b8;
    font-weight: 700;
    margin-top: 10px;
    margin-left: 2.2em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.event-price i {
    color: #fffbe7;
}
.event-banner-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.event-cta {
    background: linear-gradient(90deg, #fffbe7 0%, #ffe0b2 100%);
    color: #ff5e62;
    font-weight: 900;
    font-size: 1.15em;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(255, 94, 98, 0.13);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    border: none;
    outline: none;
    display: inline-block;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 0 #fff;
    width: 100%;
    text-align: center;
}
.event-cta i {
    margin-right: 8px;
}
.event-cta:hover, .event-cta:focus {
    background: linear-gradient(90deg, #ffe0b2 0%, #fffbe7 100%);
    color: #d84315;
    transform: scale(1.06);
}
.event-info-link {
    width: 100%;
    text-align: center;
}
.info-link {
    background: linear-gradient(90deg, #fffbe7 0%, #ffe0b2 100%);
    color: #ff5e62;
    font-weight: 900;
    font-size: 1.15em;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(255, 94, 98, 0.13);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    border: none;
    outline: none;
    display: inline-block;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 0 #fff;
    max-width: 300px;
}
.info-link i {
    margin-right: 8px;
}
.info-link:hover, .info-link:focus {
    background: linear-gradient(90deg, #ffe0b2 0%, #fffbe7 100%);
    color: #d84315;
    transform: scale(1.06);
}
@media (max-width: 900px) {
    .event-banner-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 18px;
        gap: 18px;
    }
    .event-banner-right {
        width: 100%;
        justify-content: flex-start;
    }
    .event-cta {
        width: 100%;
        text-align: center;
    }
    .event-title, .event-subtitle, .event-datetime, .event-tagline, .event-price {
        margin-left: 0;
    }
}

/* Timeline optimalisaties voor compactere weergave */
.timeline-blog-container .timeline-section {
    padding: 15px !important;
    margin: 10px !important;
    max-height: 2195.44px !important;
}

.timeline-blog-container .timeline-section .timeline-intro {
    margin-bottom: 15px !important;
    padding: 10px !important;
}

.timeline-blog-container .timeline-section .timeline-intro h3 {
    font-size: 1.4em !important;
    margin-bottom: 10px !important;
}

.timeline-blog-container .timeline-posts {
    margin-top: 15px !important;
    padding-left: 40px !important;
}

.timeline-blog-container .timeline-post {
    margin-bottom: 12px !important;
    padding: 12px 15px 10px 15px !important;
}

.timeline-blog-container .post-header {
    margin-bottom: 8px !important;
    padding-bottom: 6px !important;
    font-size: 1em !important;
}

.timeline-blog-container .post-content {
    margin-bottom: 8px !important;
    font-size: 0.9em !important;
    line-height: 1.4 !important;
}

.timeline-blog-container .reactions {
    margin-top: 8px !important;
    padding-top: 6px !important;
}

.timeline-blog-container .post-reactions {
    margin-left: 20px !important;
    margin-top: 10px !important;
    padding-left: 15px !important;
}

.timeline-blog-container .reaction-post {
    padding: 10px 12px !important;
    margin-bottom: 8px !important;
}

.timeline-blog-container .timeline-posts:before {
    left: 12px !important;
}

.timeline-blog-container .timeline-post:before {
    left: -28px !important;
    width: 10px !important;
    height: 10px !important;
}

.timeline-blog-container .timeline-post:after {
    left: -28px !important;
    width: 28px !important;
}

.timeline-blog-container .new-post-container {
    margin-bottom: 20px !important;
}

.timeline-blog-container .new-post-button {
    padding: 8px 20px !important;
    font-size: 1em !important;
}

/* Compactere waarderingssysteem */
.timeline-blog-container .reactions-container {
    margin-top: 10px !important;
    padding-top: 10px !important;
}

.timeline-blog-container .reactions-summary {
    gap: 8px !important;
    margin-bottom: 6px !important;
}

.timeline-blog-container .reaction-count {
    font-size: 0.8em !important;
    padding: 3px 6px !important;
}

.timeline-blog-container .reaction-buttons {
    gap: 6px !important;
    margin-bottom: 6px !important;
}

.timeline-blog-container .reaction-button {
    padding: 6px 10px !important;
    font-size: 0.85em !important;
}

/* Aanpassingen voor mobiel */
@media (max-width: 768px) {
    .timeline-blog-container .timeline-section {
        padding: 10px !important;
        margin: 5px !important;
    }
    
    .timeline-blog-container .timeline-posts {
        padding-left: 30px !important;
    }
}

/* Scrollbar styling voor timeline in ingelogde toestand */
body:not(.logged-in) .timeline-blog-container .timeline-section {
    overflow: hidden !important;
}

body.logged-in .timeline-blog-container .timeline-section {
    overflow-y: auto !important;
    scrollbar-width: thin !important;
    scrollbar-color: #2f71b8 #f1f1f1 !important;
}

body.logged-in .timeline-blog-container .timeline-section::-webkit-scrollbar {
    width: 8px !important;
}

body.logged-in .timeline-blog-container .timeline-section::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 4px !important;
}

body.logged-in .timeline-blog-container .timeline-section::-webkit-scrollbar-thumb {
    background: #2f71b8 !important;
    border-radius: 4px !important;
}

body.logged-in .timeline-blog-container .timeline-section::-webkit-scrollbar-thumb:hover {
    background: #245a92 !important;
}

/* Verbeterde timeline overlay */
.timeline-blog-container .timeline-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(255, 255, 255, 0.85) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    border-radius: 15px !important;
    backdrop-filter: blur(0.2px) !important;
}      