:root {
    --primary-color: #2563EB;
    --primary-dark: #1E40AF;
    --secondary-color: #F3F4F6;
    --text-color: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text; /* Vendor-prefixed versie */
    background-clip: text; /* Standaard versie voor compatibiliteit */
    -webkit-text-fill-color: transparent; /* Zorgt ervoor dat de tekstkleur transparant is */
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Header/Navigation */
.main-header {
    background: white;
    border-bottom: 1px solid #eee; /* Subtiele lijn onder de header */
    position: relative; /* Verander van fixed/absolute naar relative */
    width: 100%;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0; /* Verminder padding van 1rem naar 0.5rem */
    height: 60px; /* Vaste hoogte voor de header */
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: auto;
    margin-right: 2rem;
    height: 100%; /* Zorg dat menu items verticaal gecentreerd blijven */
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.language-switch {
    margin-left: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Zorg dat de main content onder de header begint */
main {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: var(--gradient);
    color: var(--white);
    margin-top: -80px; /* Compenseer voor fixed header */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white); /* Expliciete witte kleur */
    -webkit-text-fill-color: var(--white); /* Override de gradient */
    background: none; /* Verwijder de gradient achtergrond */
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 45vh;
    width: auto;
    object-fit: contain;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--secondary-color);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.button-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 4rem 0;
    }
}

/* Footer */
.main-footer {
    background: var(--white);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.footer-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.contact-info p {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 1rem;
}

.linkedin-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
}

/* Mobile menu button */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-button span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }
}

/* Specifieke icoon kleuren */
.ai-icon { background-color: #e0f2fe; }
.content-icon { background-color: #f0fdf4; }
.copy-icon { background-color: #fef3c7; }
.local-icon { background-color: #ede9fe; }

@media screen and (max-width: 768px) {
    .hero-image img {
        max-height: 35vh; /* Iets kleiner op mobiele apparaten */
    }
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
}

/* Blauwe achtergrond voor blok 1 en 3 */
.service-block:nth-child(odd) {
    background: linear-gradient(to right, #1e3a8a, #2563eb);
    color: white;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 1rem;
}

/* Witte achtergrond voor blok 2 en 4 */
.service-block:nth-child(even) {
    background-color: #f9f9f9;
    color: #333;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 1rem;
}

/* Tekst rechts voor blok 1 en 3 */
.service-block:nth-child(odd) {
    direction: ltr;
}

/* Tekst links voor blok 2 en 4 */
.service-block:nth-child(even) {
    direction: rtl;
}

/* Reset direction voor de content */
.service-block .service-content {
    direction: ltr;
}

/* Verbeterde leesbaarheid */
.service-block h2 {
    color: inherit;
}

.service-block p {
    color: inherit;
}

/* Button styling voor blok 1 en 3 */
.service-block:nth-child(odd) .button {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: #ffffff;
    color: #2563eb;
}

/* Button styling voor blok 2 en 4 */
.service-block:nth-child(even) .service-content {
    position: relative;
    padding-bottom: 4rem; /* Ruimte maken voor de button */
}

.service-block:nth-child(even) .button {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #2563eb;
    color: #ffffff;
}

/* Algemene button styling */
.service-block .button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

/* Button hover effects */
.service-block:nth-child(odd) .button:hover {
    background-color: #f0f0f0;
}

.service-block:nth-child(even) .button:hover {
    background-color: #1e3a8a;
}

@media (max-width: 768px) {
    .service-block:nth-child(odd) .button,
    .service-block:nth-child(even) .button {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }
    
    .service-block:nth-child(even) .service-content {
        padding-bottom: 0;
    }
}

.service-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon {
    width: 8rem;
    height: 8rem;
    color: #2563eb;
}

@media (max-width: 768px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .service-block:nth-child(odd),
    .service-block:nth-child(even) {
        direction: ltr;
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .service-block .button {
        position: static;
        margin-top: 1rem;
    }
}

/* Over mij pagina specifieke stijlen */

/* Intro sectie */
.about-intro {
    padding: 4rem 0;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

/* Timeline sectie */
.timeline {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-year {
    flex-shrink: 0;
    width: 100px;
    text-align: right;
    font-weight: 600;
    color: #2563eb;
}

.timeline-content {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid #e5e7eb;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.timeline-content p {
    color: #6b7280;
}

/* Werkwijze sectie */
.approach {
    padding: 4rem 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.approach-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.approach-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.approach-arrow {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.1em;
}

.approach-title {
    font-weight: 600;
    margin-right: 0.5rem;
    color: var(--text-color);
}

.approach-description {
    color: var(--text-color-light);
}

@media (max-width: 768px) {
    .approach-list li {
        flex-direction: column;
    }
    
    .approach-title {
        margin-bottom: 0.25rem;
    }
}

/* Visie sectie */
.vision {
    padding: 4rem 0;
    background-color: #ffffff;
}

.vision h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 3rem;
}

.vision-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-item {
    padding-left: 1.5rem;
    border-left: 4px solid #2563eb;
}

.vision-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.vision-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Trainingen sectie */
.trainings {
    padding: 4rem 0;
    background: linear-gradient(to right, #1e3a8a, #2563eb);
    color: white;
}

.trainings h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.trainings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.training-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.training-card h3 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.training-card p {
    color: #ffffff;
    font-size: 0.95rem;
}

/* CTA sectie */
.cta {
    padding: 4rem 0;
    text-align: center;
}

.cta .button {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta .button:hover {
    background-color: #1e40af;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .approach-grid,
    .trainings-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-year {
        text-align: left;
        width: auto;
    }

    .timeline-content {
        padding-left: 1.5rem;
    }

    .vision-grid {
        gap: 3rem;
    }

    .trainings-grid {
        grid-template-columns: 1fr;
    }
}

/* Header spacing fix */
main {
    padding-top: 80px; /* Aanpassen aan de hoogte van je header */
}

/* Hero sectie */
.hero-small {
    background: linear-gradient(to right, #1e3a8a, #2563eb);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: -80px; /* Compenseren voor de main padding */
    padding-top: calc(4rem + 80px); /* Extra padding bovenaan voor de header */
}

.hero-small h1 {
    font-size: 3rem; /* Vergroot de lettergrootte */
    font-weight: 700; /* Maak de tekst vetgedrukt */
    margin-bottom: 1rem;
    color: #ffffff; /* Zorg voor een goede kleur */
    text-transform: uppercase; /* Hoofdletters voor een moderne uitstraling */
    letter-spacing: 1px; /* Ruimte tussen letters voor een premium gevoel */
    text-shadow: none; /* Verwijder schaduw voor een strakkere look */
}

.hero-small p {
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 0.9; /* Subtiele transparantie voor een moderne uitstraling */
}

/* Diensten H1 stijl */
.services-detail h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text; /* Vendor-prefixed versie */
    background-clip: text; /* Standaard versie voor compatibiliteit */
    -webkit-text-fill-color: transparent; /* Zorgt ervoor dat de tekstkleur transparant is */
    text-align: center; /* Centraal uitlijnen */
}

/* Voor de subkop in de diensten sectie */
.services-detail p {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center; /* Centraal uitlijnen */
    margin-bottom: 2rem;
}

/* Services Detail Page */
.services-detail {
    padding-top: 2rem;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
}

/* Blauwe achtergrond voor blok 1 en 3 */
.service-block:nth-child(odd) {
    background: linear-gradient(to right, #1e3a8a, #2563eb);
    color: white;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 1rem;
}

/* Witte achtergrond voor blok 2 en 4 */
.service-block:nth-child(even) {
    background-color: #f9f9f9;
    color: #333;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 1rem;
}

/* Service content en visual styling */
.service-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon {
    width: 8rem;
    height: 8rem;
    color: #2563eb;
    padding: 1rem;
    border-radius: 0.75rem;
}

/* Benefits list styling */
.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: currentColor;
}

/* Zorg dat tekst in blauwe blokken wit is */
.service-block:nth-child(odd) h2,
.service-block:nth-child(odd) p,
.service-block:nth-child(odd) .benefits-list li {
    color: white;
}

/* Button styling */
.service-block .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.service-block:nth-child(odd) .button {
    background-color: white;
    color: #2563eb;
}

.service-block:nth-child(even) .button {
    background-color: #2563eb;
    color: white;
}

/* Service block content styling */
.service-block .service-content {
    text-align: left; /* Zorgt voor links uitlijnen */
}

.service-block .service-content p {
    text-align: left; /* Expliciet links uitlijnen voor paragrafen */
    max-width: 600px; /* Optioneel: beperkt de tekstbreedte voor betere leesbaarheid */
}

/* Zorg dat de titel ook links uitgelijnd is */
.service-block .service-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

/* Service Features */
.service-features {
    background-color: #f5f5f5;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 0;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid #0066ff;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Testimonial Section */
.testimonial {
    padding: 6rem 0;
    background: var(--white);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--secondary-color);
    border-radius: 1rem;
}

.testimonial-content p {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-company {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Witte koppen voor dienstenpagina's */
.diensten-h1 {
    color: white;
}

/* Witte koppen voor dienstenpagina's */
.hero h1.diensten-h1,
.hero-small h1.diensten-h1 {
    color: white !important; /* Verhoog specificiteit */
}

/* Of als alternatief met hogere specificiteit */
section.hero-small h1.diensten-h1{
    color: white;
}

/* Witte koppen voor dienstenpagina's */
.hero-small h1.diensten-h1 {
    background: none;
    -webkit-text-fill-color: white;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: white;
}

/* Contact Form Styling */
.contact-section {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    width: 100%;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit {
    text-align: right;
}

.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.alert.success {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.alert.error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

.g-recaptcha {
    margin-bottom: 20px;
}

/* Voor mobiele apparaten */
@media screen and (max-width: 400px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: left center;
    }
}

/* Publicaties Grid */
.publications-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.publication-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.publication-card:hover {
    transform: translateY(-5px);
}

.publication-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.publication-content {
    padding: 1.5rem;
}

.publication-content h2 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.publication-content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Admin Styling */
.publication-form {
    max-width: 600px;
    margin: 2rem auto;
}

.publications-list {
    margin-top: 2rem;
}

.publication-item {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

.button.delete {
    background-color: #dc2626;
}

.button.delete:hover {
    background-color: #b91c1c;
}

/* Admin styling */
.publication-actions {
    margin-top: 1rem;
}

.button.edit {
    background-color: #2563eb;
    margin-right: 0.5rem;
}

.button.edit:hover {
    background-color: #1d4ed8;
}

/* Publicatie content styling */
.publication-header-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}

.publication-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.publication-body h2 {
    color: #2563eb;
    margin: 2rem 0 1rem;
}

.publication-body p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.publication-body a {
    color: #2563eb;
    text-decoration: underline;
}

.publication-body ul, 
.publication-body ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

/* Image selector styling */
.image-selector {
    display: flex;
    gap: 1rem;
}

.image-selector input {
    flex: 1;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 0.5rem;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 2rem;
    cursor: pointer;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.image-item {
    cursor: pointer;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.image-item:hover {
    border-color: #2563eb;
    transform: scale(1.05);
}

.image-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.image-item span {
    display: block;
    font-size: 0.875rem;
    color: #4b5563;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.char-count {
    font-size: 0.875rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

/* Form group aanpassingen */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.template-editor {
    margin: 2rem 0;
}

.template-help {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: #f3f4f6;
    border-radius: 0.25rem;
}

/* TinyMCE aanpassingen */
.tox-tinymce {
    border-radius: 0.375rem !important;
}

.tox .tox-toolbar {
    background-color: #f9fafb !important;
}

/* Collapsible section styling */
.collapsible-section {
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.collapsible-trigger {
    width: 100%;
    padding: 1rem;
    background: #f9fafb;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #374151;
}

.collapsible-trigger:hover {
    background: #f3f4f6;
}

.collapsible-trigger .arrow-icon {
    transition: transform 0.3s ease;
    fill: currentColor;
}

.collapsible-trigger.active .arrow-icon {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.collapsible-content .form-group {
    padding: 1rem;
    margin: 0;
}

/* Bestaande template editor styling blijft hetzelfde */
.template-help {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: #f3f4f6;
    border-radius: 0.25rem;
}

/* Image selector styling uitbreiding */
.image-details {
    padding: 0.5rem;
}

.image-name {
    display: block;
    font-size: 0.75rem;
    color: #4b5563;
    margin-bottom: 0.25rem;
}

.alt-text-wrapper {
    position: relative;
}

.alt-text-input {
    width: 100%;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    margin-top: 0.25rem;
}

.alt-text-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.alt-text-input.saved {
    background-color: #ecfdf5;
    border-color: #34d399;
    transition: all 0.3s ease;
}

/* Geselecteerde afbeelding info */
.selected-image-info {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}

/* Image preview aanpassingen */
#selectedImage {
    max-width: 200px;
    margin-top: 10px;
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-card {
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-arrow svg {
    width: 24px;
    height: 24px;
    animation: glow 2s infinite;
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 2px rgba(59, 130, 246, 0.5)); }
    50% { filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.8)); }
    100% { filter: drop-shadow(0 0 2px rgba(59, 130, 246, 0.5)); }
}

.service-details {
    background-color: #f5f5f5;
    padding: 2rem 0;
    margin: 0;
    display: none;
}

.detail-content-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

/* Zorg dat de CTA sectie weer een witte achtergrond heeft */
.cta {
    background-color: white;
    padding: 3rem 0;
    margin-top: 0;
}

.detail-content {
    display: none; /* initieel verborgen */
    border-left: 4px solid #0066ff;
}

.detail-content.active {
    display: block;
    animation: slideFromCard 0.3s ease-out;
}

@keyframes slideFromCard {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bestaande feature-card styling behouden, alleen aanpassen: */
.feature-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card.active {
    background-color: #f8f9fa; /* of een andere subtiele highlight kleur */
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-icon {
    width: 24px; /* Zelfde grootte als in feature card */
    height: 24px;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

/* Behoud bestaande feature-icon styling */
.feature-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 1rem;
}

/* Feature cards met verschillende kleuren */
.feature-card[data-detail="tegel-1"] {
    border-left: 4px solid #0066ff; /* Primary blue */
}

.feature-card[data-detail="tegel-2"] {
    border-left: 4px solid #2ecc71; /* Een groen die past bij je huisstijl */
}

.feature-card[data-detail="tegel-3"] {
    border-left: 4px solid #e74c3c; /* Een rood die past bij je huisstijl */
}

/* Verdiepende content styling */
.detail-content {
    position: relative;
    padding-left: 2rem; /* Meer ruimte tussen streep en content */
}

.detail-content[id="tegel-1"] {
    border-left: 4px solid #0066ff;
}

.detail-content[id="tegel-2"] {
    border-left: 4px solid #2ecc71;
}

.detail-content[id="tegel-3"] {
    border-left: 4px solid #e74c3c;
}

/* Icoon rechtsboven */
.detail-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
}

/* Aanpassing header layout */
.detail-header {
    padding-right: 40px; /* Ruimte voor het icoon */
    margin-bottom: 1.5rem;
}

.detail-header h3 {
    margin: 0;
}

/* Kleinere koppen voor feature cards op dienstenpagina's */
.feature-card h2 {
    font-size: 1.5rem; /* of een andere gewenste grootte */
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1D40AF; /* behoud de blauwe kleur */
}

/* Footer navigatie layout */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Container voor de linkjes */
.footer-links-container {
    display: flex;
    gap: 4rem;
}

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

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links-container {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Training & Begeleiding pagina */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.training-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.training-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.training-level {
    margin-bottom: 2rem;
}

.training-level h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.guidance-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.guidance-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

@media (max-width: 768px) {
    .training-grid,
    .guidance-content {
        grid-template-columns: 1fr;
    }
}

/* Tegel interactie styling */
.feature-card {
    position: relative;
    padding-bottom: 3rem;
}

.feature-card .scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.feature-card .scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-color);
    transition: all 0.3s ease;
}

/* Hover effect voor de hele kaart */
.feature-card:hover .scroll-indicator svg {
    stroke: var(--primary-color);
}

/* Stuiterende animatie bij hover op de pijl */
@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.scroll-indicator:hover {
    animation: bounce 1s ease infinite;
}

/* Zorgt dat de pijl blauw blijft tijdens het stuiteren */
.scroll-indicator:hover svg {
    stroke: var(--primary-color);
}
