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

:root {
    --primary-green: #6B8E5A;
    --dark-green: #4A5F3F;
    --light-green: #8B9A7C;
    --cream: #F5F3EE;
    --beige: #E8E4DC;
    --brown: #8B7355;
    --dark-gray: #333333;
    --light-gray: #F8F8F8;
    --white: #FFFFFF;
    --text-gray: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

/* Header zonder hero sectie (voor andere pagina's) */
.header.header-simple {
    min-height: auto;
}

.header-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
}

.header-nav .container {
    position: relative;
    overflow: visible;
}

.header.scrolled .header-nav {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-nav .container {
    position: relative;
    overflow: visible;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    width: 100%;
    position: relative;
}

.header-hero {
    position: relative;
    background: #f6f4ef;
    overflow: hidden;
    padding: 28px 0 40px; /* Foto + tekst iets hoger, minder ruimte boven */
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 16px; /* Iets hoger gezet */
}

.hero-waves {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 600px;   /* Verhoogd voor meer ruimte */
    z-index: 1;
    pointer-events: none;
}

.hero-waves svg {
    width: 100%;
    height: 100%;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    line-height: 1.2;
}

.logo-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-green);
    letter-spacing: 1px;
    text-align: center;
}

.logo-tagline {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-align: center;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--dark-green);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-green);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    gap: 1rem;
    z-index: 1001;
    margin-top: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    min-height: 48px;
    height: auto;
}

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

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 142, 90, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-height: 48px;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: var(--cream);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.header-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    animation: fadeInLeft 1s ease;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 4rem; /* Ruimte zodat feature-items niet over de blauwe golven heen komen */
}

.hero-title {
    font-size: 3.5rem;
    color: var(--dark-green);
    margin: 0 auto 1.5rem;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin: 0 auto 2rem;
    text-align: center;
    width: 100%;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin: 1.5rem auto 0;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
}

.hero-image {
    animation: fadeInRight 1s ease;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.hero-placeholder {
    display: none;
}

.hero-placeholder.visible {
    display: block;
}

.hero-image .image-placeholder {
    aspect-ratio: 1 / 1 !important;
    height: 0 !important;
    padding-bottom: 100% !important;
    width: 100% !important;
    position: relative;
}

/* Desktop image - rechts naast tekst */
.hero-image-desktop {
    display: block;
}

/* Mobile image - onder features, binnen hero-text */
.hero-image-mobile {
    display: none;
    margin-top: 2rem;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--beige);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Hero images moeten altijd vierkant zijn */
.hero-image-desktop .image-placeholder,
.hero-image-mobile .image-placeholder,
.hero-image .image-placeholder {
    aspect-ratio: 1 / 1 !important;
    height: 0 !important;
    width: 100% !important;
    padding-bottom: 100% !important;
    position: relative;
    min-height: 0 !important;
    max-height: none !important;
}

.hero-image-desktop .image-placeholder svg,
.hero-image-mobile .image-placeholder svg,
.hero-image .image-placeholder svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block;
}


/* Services Section */
/* Ineens mantelzorger section (tussen hero en Hoe kan ik je helpen) */
.ineens-section {
    padding: 4rem 0 5rem;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ineens-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.ineens-image {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.ineens-image .ineens-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.ineens-image-placeholder {
    display: none;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #E8E4DC;
}

.ineens-image-placeholder.visible {
    display: block;
}

.ineens-image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

.ineens-text {
    color: var(--text-gray);
    line-height: 1.8;
}

.ineens-title {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.ineens-text p {
    margin-bottom: 1.25rem;
}

.ineens-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 770px) {
    .ineens-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .ineens-image {
        max-width: 100%;
        margin: 0 auto;
    }
    .ineens-title {
        text-align: center;
    }
    .ineens-text {
        text-align: center;
    }
}

.services {
    padding: 5rem 0 5rem;
    margin-top: 2rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-gray);
    text-align: center;
    margin: 0 auto 3rem;
    width: 100%;
}

/* Mantelzorgmakelaar & Coaching blokken boven de kaartjes */
.help-intro-block {
    max-width: 820px;
    margin: 0 auto 2.5rem;
    padding: 2.5rem 2.5rem 2.25rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
}

.help-intro-block.visible {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
}

.help-intro-block.visible:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(0, 0, 0, 0.06);
}

.help-section-divider {
    max-width: 820px;
    margin: 0 auto 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    height: 0;
}

.help-subtitle {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-green);
    display: inline-block;
}

.help-intro {
    color: var(--text-gray);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-size: 1.02rem;
}

.help-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.5rem;
    color: var(--text-gray);
    line-height: 1.85;
    font-size: 1rem;
}

.help-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.help-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-green);
}

.help-regie {
    color: var(--dark-gray);
    font-weight: 500;
    line-height: 1.85;
    margin: 0;
    padding: 1rem 1.25rem;
    background: rgba(139, 154, 124, 0.08);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.help-coaching-text {
    color: var(--text-gray);
    line-height: 1.85;
    margin: 0;
    font-size: 1.02rem;
}

@media (min-width: 700px) {
    .help-makelaar .help-list {
        column-count: 2;
        column-gap: 2.5rem;
    }
    .help-makelaar .help-list li {
        break-inside: avoid;
    }
}

@media (max-width: 600px) {
    .help-intro-block {
        padding: 1.75rem 1.25rem;
    }
}

.help-cards-title {
    font-size: 1.35rem;
    color: var(--dark-gray);
    text-align: center;
    margin: 0 auto 1.5rem;
    width: 100%;
}

.services-carousel-wrapper {
    position: relative;
    margin: 2rem auto;
    padding: 0; /* Geen padding meer, pijltjes staan onder */
    overflow: hidden; /* Voorkom horizontale scroll */
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-carousel {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding: 30px; /* Ruimte voor shadows */
    overflow: hidden;
    box-sizing: content-box; /* Width = content. Padding komt erbij. */
}

@media (max-width: 770px) {
    .services-carousel {
        padding: 20px; /* Minder padding op mobiel */
    }
}

/* Pijltjes altijd tonen, ook op mobiel */
/* (Verwijder de display: none regel die hier stond) */

.services-track {
    display: flex;
    gap: 24px; /* Vaste gap, matching JS */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    flex-wrap: nowrap;
    width: fit-content;
}

@media (max-width: 770px) {
    .services-track {
        gap: 24px; /* Zelfde gap als desktop */
    }
}

.service-card {
    /* Breedte wordt door JS bepaald via style attribute */
    flex-shrink: 0; /* Voorkom dat flex items krimpen */
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Duidelijke shadow die binnen padding valt */
}

/* Tablet & Mobiel: compacte kaarten, groeien bij "Lees meer" */
@media (max-width: 770px) {
    .service-card {
        min-height: 320px !important;
        height: auto !important;
        padding: 2rem;
        justify-content: flex-start;
        overflow: hidden;
        word-wrap: break-word;
    }
    .service-card.expanded {
        min-height: auto !important;
        overflow: visible;
    }
}

/* Mobiel specifiek */
@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem;
        width: 240px !important;
        min-width: 240px !important;
        min-height: 320px !important; 
    }
    .service-card.expanded {
        min-height: auto !important;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); /* Sterkere shadow bij hover */
    z-index: 2;
}

/* Mobiel: 1 card */
@media (max-width: 770px) {
    .service-card {
        flex: 0 0 100%;
    }
}

.carousel-btn {
    position: static; /* Niet meer absolute, maar in flow */
    transform: none;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-green);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}


.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-green);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.carousel-dot.active {
    opacity: 1;
    background: var(--primary-green);
    transform: scale(1.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-green);
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
    /* Zelfde tekst, visueel ingekort wanneer blok klein is */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card.expanded .service-description {
    -webkit-line-clamp: unset;
    overflow: visible;
    display: block;
}

.service-lees-meer {
    margin-top: auto;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--primary-green);
    background: transparent;
    border: 1px solid var(--primary-green);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.service-lees-meer:hover {
    background: var(--primary-green);
    color: var(--white);
}

.service-card.expanded {
    min-height: auto !important;
}

.service-card .btn {
    margin-top: auto;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.benefit-item.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(107, 142, 90, 0.3);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
}

.benefit-title {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(107,142,90,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image .about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image .image-placeholder {
    height: 400px;
}

.about-text {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-text .btn {
    margin: 1rem auto 0;
    display: block;
}

.about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-text .section-title {
    text-align: center;
    color: var(--dark-green);
    margin: 0 auto 1rem;
    font-size: 2.8rem;
    width: 100%;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin: 0 auto 1.5rem;
    font-style: italic;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.about-description {
    color: var(--dark-gray);
    margin: 0 auto 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
    text-align: center;
    width: 100%;
}

/* About Page Styles */
.about-page {
    padding: 2rem 0 5rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    min-height: auto;
}

.about-page-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-page-text {
    margin-bottom: 3rem;
}

.about-page-text .about-description {
    text-align: left;
    margin-bottom: 2rem;
}

.about-page-photo {
    max-width: 420px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.about-photo-wrap {
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #e8e4dc 0%, #d4cfc4 50%, #c4b8a8 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 8px 24px rgba(0,0,0,0.08);
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.about-photo-placeholder {
    display: none;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--cream);
}

.about-photo-placeholder.visible {
    display: block;
}

.about-photo-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Privacy page */
.privacy-intro {
    margin-bottom: 2rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.privacy-body {
    text-align: left;
}

.privacy-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--dark-green);
}

.privacy-body h2:first-child {
    margin-top: 0;
}

.privacy-body p,
.privacy-body ul {
    margin: 0 0 1rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.privacy-body ul {
    padding-left: 1.5rem;
}

.privacy-body a {
    color: var(--primary-green);
    text-decoration: underline;
}

.privacy-body a:hover {
    text-decoration: none;
}

.about-page-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Werkwijze Page Styles */
.werkwijze-page {
    padding: 2rem 0 5rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    min-height: auto;
}

.werkwijze-page-content {
    max-width: 920px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.werkwijze-intro-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
}

.werkwijze-intro-block .section-heading {
    margin-top: 0;
    margin-bottom: 1rem;
}

.werkwijze-intro-block .content-text {
    margin: 0;
}

.werkwijze-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 2.5rem 0 2rem;
}

.tarief-kop {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.tarief-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--beige);
}

.tarief-section:last-of-type {
    border-bottom: none;
}

.tarief-title {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.tarief-subtitle {
    font-size: 1.15rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tarief-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
}

.tarief-amount {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.tarief-per {
    font-size: 1.5rem;
    font-weight: 400;
}

.tarief-note {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.tarief-description {
    color: var(--dark-gray);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.info-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-green);
}

.info-title {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.info-text {
    color: var(--dark-gray);
    line-height: 1.9;
    font-size: 1.05rem;
    margin: 0;
}

.werkgevers-section {
    background: var(--cream);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--beige);
}

.werkwijze-page-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Werkgevers Page Styles */
.werkgevers-page {
    padding: 2rem 0 5rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    min-height: auto;
}

.werkgevers-page-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.content-section {
    margin-bottom: 3rem;
}

.content-text {
    color: var(--dark-gray);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin: 2.5rem 0 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.benefits-section {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 3rem 0;
    border-left: 4px solid var(--primary-green);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-list li {
    color: var(--dark-gray);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.services-section {
    margin: 3rem 0;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.services-list li {
    color: var(--dark-gray);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.services-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.5;
}

.services-list li strong {
    color: var(--dark-green);
    font-weight: 600;
}

.workflow-section {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 3rem 0;
    border: 2px solid var(--beige);
}

.info-box {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.info-box-mantelzorg {
    background: linear-gradient(135deg, rgba(74, 95, 63, 0.08) 0%, rgba(139, 154, 124, 0.12) 100%);
}

.info-box-text {
    margin: 0;
    font-size: 1.05rem;
    color: var(--dark-gray);
}

.info-box-text a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: underline;
}

.info-box-text a:hover {
    text-decoration: none;
}

.werkgevers-page-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Dienstverlening Page Styles */
.dienstverlening-page {
    padding: 2rem 0 5rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    min-height: auto;
}

.dienstverlening-page-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-category {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.category-title {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.examples-section {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--cream);
    border-radius: 10px;
    border: 2px solid var(--beige);
}

.coaching-section {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 3rem 0;
    border-left: 4px solid var(--primary-green);
}

.dienstverlening-page-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--beige);
    border-radius: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(107, 142, 90, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group button {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content .footer-center {
    justify-self: stretch;
    width: 100%;
}

.footer-left {
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}

.footer-left a {
    color: var(--white);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-left a:hover {
    text-decoration: underline;
}

.footer-center {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
    color: var(--white);
    flex-shrink: 0;
    min-width: 200px;
    max-width: 280px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    flex-shrink: 0;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-green);
}

.footer-link svg {
    width: 20px;
    height: 20px;
}

.footer-right {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .nav.mobile-open {
        display: flex !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .container {
        padding: 0 15px;
    }

    .header-hero {
        padding: 40px 0 30px;
    }

    .hero-inner {
        padding-top: 20px !important;
    }

    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        width: 100%;
        max-width: 100%;
        gap: 2rem;
        margin: 0 auto;
        padding: 0;
    }

    .header-hero .hero-content {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }

    .hero-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .header-hero .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-inner {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .header-hero .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 1.5rem !important;
        padding: 0 !important;
        display: block !important;
    }

    .hero-subtitle {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        font-size: 1.1rem;
        margin: 0 auto 2rem !important;
        padding: 0 !important;
        display: block !important;
    }

    .hero-text .btn {
        margin: 0 auto 2rem;
        display: block;
        width: auto;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        margin: 0 auto;
    }

    /* Verberg desktop image, toon mobile image */
    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
        margin: 2rem auto 0;
        max-width: 60%;
        width: 60%;
    }

    /* Zorg dat mobile image vierkant is */
    .hero-image-mobile .image-placeholder {
        height: 0 !important;
        aspect-ratio: 1 / 1 !important;
        padding-bottom: 100% !important;
        max-width: 100%;
        width: 100% !important;
        margin: 0 auto;
        position: relative;
    }

    .hero-image-mobile .image-placeholder svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: contain;
        display: block;
    }

    .section-title {
        text-align: center;
        width: 100%;
        margin: 0 auto 2rem;
        font-size: 2.2rem;
    }

    .services {
        padding: 3rem 0;
    }

    .services .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .services-carousel-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        justify-items: center;
    }

    .benefit-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .about {
        padding: 3rem 0;
    }

    .about-content {
        width: 100%;
        gap: 2rem;
    }

    .about-text {
        width: 100%;
        padding: 2rem;
        text-align: center;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .about-text .btn {
        margin: 1rem auto 0 !important;
        display: block !important;
    }

    .about-text .section-title {
        text-align: center;
    }

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

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

    .about-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact {
        padding: 3rem 0;
    }

    .contact-content {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .contact-title {
        font-size: 2rem;
        text-align: center;
        width: 100%;
    }

    .contact-subtitle {
        text-align: center;
        width: 100%;
        font-size: 1rem;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        padding: 2rem;
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group {
        width: 100%;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
    }

    .form-group button {
        width: 100%;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        width: 100%;
    }

    .footer-left {
        text-align: center;
        width: 100%;
    }

    .footer-center {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
    }

    .footer-right {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 568px) {
    .container {
        padding: 0 10px;
    }

    .header-hero {
        padding: 30px 0 20px;
    }

    .hero-inner {
        padding-top: 10px !important;
    }

    .header-hero .hero-content {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }

    .hero-text {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto;
        padding: 0 0 4rem 0;
    }

    .header-hero .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-inner {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .header-hero .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-image-mobile {
        max-width: 50% !important;
        width: 50% !important;
        margin: 1.5rem auto 0 !important;
    }

    .hero-image-mobile .image-placeholder {
        height: 0 !important;
        aspect-ratio: 1 / 1 !important;
        padding-bottom: 100% !important;
        width: 100% !important;
        max-height: none !important;
        position: relative;
    }

    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 0 4rem 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-title {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto 1rem !important;
        padding: 0 !important;
    }

    .hero-subtitle {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto 1.5rem !important;
        padding: 0 !important;
    }

    .hero-title {
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 1rem;
        padding: 0;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 1.5rem;
        padding: 0;
    }

    .hero-text .btn {
        font-size: 0.95rem;
        padding: 0.85rem 1.5rem;
        width: auto;
        margin: 0 auto 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
        margin: 0 auto 1.5rem;
    }

    .services {
        padding: 2rem 0;
    }

    .services-carousel-wrapper {
        padding: 0;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.3rem;
        text-align: center;
    }

    .service-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .benefits-grid {
        gap: 1.5rem;
    }

    .benefit-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .benefit-description {
        font-size: 1rem;
        text-align: center;
    }

    .about {
        padding: 2rem 0;
    }

    .about-text {
        padding: 1.5rem;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .about-text .btn {
        margin: 1rem auto 0 !important;
    }

    .about-page {
        padding: 3rem 0;
    }

    .about-page-content {
        padding: 2rem;
    }

    .about-page-text .about-description {
        text-align: center;
    }

    .about-page-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-page-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .werkwijze-page {
        padding: 2rem 0 3rem;
    }

    .werkwijze-page-content {
        padding: 2rem;
    }

    .werkwijze-intro-block .section-heading {
        text-align: center;
    }

    .tarief-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .tarief-amount {
        font-size: 2.5rem;
    }

    .tarief-per {
        font-size: 1.2rem;
    }

    .info-title {
        font-size: 1.3rem;
    }

    .werkwijze-page-actions {
        flex-direction: column;
        align-items: center;
    }

    .werkwijze-page-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .werkgevers-page {
        padding: 2rem 0 3rem;
    }

    .werkgevers-page-content {
        padding: 2rem;
    }

    .page-subtitle {
        font-size: 1.5rem;
        text-align: center;
    }

    .section-heading {
        font-size: 1.5rem;
        text-align: center;
    }

    .benefits-section,
    .workflow-section {
        padding: 1.5rem;
    }

    .benefits-list li,
    .services-list li {
        padding-left: 1.2rem;
        font-size: 1rem;
    }

    .werkgevers-page-actions {
        flex-direction: column;
        align-items: center;
    }

    .werkgevers-page-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .dienstverlening-page {
        padding: 2rem 0 3rem;
    }

    .dienstverlening-page-content {
        padding: 2rem;
    }

    .service-category,
    .examples-section,
    .coaching-section {
        padding: 1.5rem;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .dienstverlening-page-actions {
        flex-direction: column;
        align-items: center;
    }

    .dienstverlening-page-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-text .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .about-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }

    .about-description {
        font-size: 1rem;
        text-align: center;
    }

    .contact {
        padding: 2rem 0;
    }

    .contact-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .contact-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form .btn {
        width: 100%;
        font-size: 1rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-left {
        font-size: 0.85rem;
    }

    .footer-center {
        flex-direction: column;
        align-items: center;
    }
    .footer-address {
        text-align: center;
    }
    .footer-contact {
        align-items: center;
    }
}
.legal-pre {
    white-space: pre-wrap;
    font-family: inherit;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

