:root {
    --color-primary: #2c5282;
    --color-primary-dark: #1a365d;
    --color-primary-light: #4a7ab7;
    --color-secondary: #718096;
    --color-accent: #3182ce;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-text-muted: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #edf2f7;
    --color-border: #e2e8f0;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.2s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

ul {
    list-style: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
    font-size: 14px;
    color: var(--color-text-light);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.header {
    position: sticky;
    top: 0;
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.logo a {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
}

.ad-disclosure {
    font-size: 11px;
    color: var(--color-text-muted);
    background: var(--color-bg-alt);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 0;
    position: relative;
}

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

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

.nav-link.active {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary {
    background: var(--color-bg-alt);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg-dark);
    color: var(--color-text);
}

.btn-text {
    background: none;
    padding: 8px 0;
    color: var(--color-primary);
    font-weight: 500;
}

.btn-text:hover {
    color: var(--color-primary-dark);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

.hero.split-section {
    background: var(--color-bg-alt);
}

.split-section {
    padding: 0;
}

.split-content {
    display: flex;
    min-height: 500px;
}

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.split-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-text);
}

.split-text h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--color-text);
}

.split-text p {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.split-text .btn {
    margin-top: 16px;
    align-self: flex-start;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-section.reverse .split-content {
    flex-direction: row-reverse;
}

.intro-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.intro-grid {
    display: flex;
    gap: 32px;
}

.intro-card {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
}

.intro-icon {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.intro-card p {
    font-size: 15px;
    color: var(--color-text-light);
}

.section-header {
    margin-bottom: 48px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-light);
}

.services-preview {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.services-grid {
    display: flex;
    gap: 24px;
}

.service-card {
    flex: 1;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.service-content p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.testimonial-section {
    background: var(--color-bg);
}

.testimonial-content {
    padding: 60px;
}

.testimonial-content blockquote {
    margin-bottom: 32px;
    padding-left: 24px;
    border-left: 3px solid var(--color-primary);
}

.testimonial-content blockquote p {
    font-size: 18px;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 16px;
}

.testimonial-content cite {
    display: block;
    font-style: normal;
}

.testimonial-content cite strong {
    display: block;
    font-size: 15px;
    color: var(--color-text);
}

.testimonial-content cite span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.cta-section {
    padding: 80px 0;
    background: var(--color-primary);
    text-align: center;
}

.cta-section.alt {
    background: var(--color-bg-alt);
}

.cta-content h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 16px;
}

.cta-section.alt .cta-content h2 {
    color: var(--color-text);
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

.cta-section.alt .cta-content p {
    color: var(--color-text-light);
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--color-primary);
}

.cta-section .btn-primary:hover {
    background: var(--color-bg-alt);
}

.form-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.form-intro p {
    color: var(--color-text-light);
}

.contact-form {
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    transition: border-color var(--transition);
}

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

.btn-submit {
    width: 100%;
}

.page-hero {
    padding: 60px 0;
    background: var(--color-bg-alt);
    text-align: center;
}

.page-hero h1 {
    font-size: 40px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.page-hero p {
    font-size: 18px;
    color: var(--color-text-light);
}

.legal-hero {
    padding: 48px 0;
}

.legal-content {
    padding: 60px 0;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article h3 {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.legal-article p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.legal-article ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-article li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-text);
}

.cookie-table td {
    color: var(--color-text-light);
}

.values-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 240px;
}

.value-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary-light);
    opacity: 0.3;
    margin-bottom: 12px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.value-item p {
    font-size: 15px;
    color: var(--color-text-light);
}

.approach-list {
    margin-top: 20px;
}

.approach-list li {
    list-style: none;
    margin-bottom: 16px;
    padding-left: 0;
    color: var(--color-text-light);
}

.stats-section {
    padding: 60px 0;
    background: var(--color-primary);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

.team-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 0 1 360px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.member-image {
    height: 280px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 24px;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--color-text);
}

.member-role {
    display: block;
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.member-info p {
    font-size: 14px;
    color: var(--color-text-light);
}

.services-full {
    padding: 60px 0;
}

.service-detail {
    padding: 48px 0;
    border-bottom: 1px solid var(--color-border);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.service-detail-content.reverse {
    flex-direction: row-reverse;
}

.service-detail-info {
    flex: 2;
}

.service-detail-info.full-width {
    flex: 1;
}

.service-detail-info h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.service-detail-info h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.service-detail-info p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.service-detail-info ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-detail-info li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.service-meta {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.service-meta span {
    font-size: 14px;
    color: var(--color-text-muted);
}

.service-detail-price {
    flex: 1;
}

.price-card {
    background: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: sticky;
    top: 100px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.price-note {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.maatwerk-options {
    display: flex;
    gap: 24px;
    margin: 24px 0;
}

.maatwerk-options .option {
    flex: 1;
    background: var(--color-bg-alt);
    padding: 24px;
    border-radius: var(--radius-md);
}

.maatwerk-options h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--color-text);
}

.maatwerk-options p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

.comparison-section {
    padding: 60px 0;
    background: var(--color-bg-alt);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
}

.comparison-table th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

.comparison-table td {
    border-bottom: 1px solid var(--color-border);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--color-bg-alt);
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 48px;
}

.contact-info-wrapper {
    flex: 1;
}

.contact-info-card {
    background: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.contact-info-card h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-text);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--color-text);
}

.contact-text p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

.contact-extra h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.faq-mini .faq-item {
    margin-bottom: 20px;
}

.faq-mini h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--color-text);
}

.faq-mini p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

.contact-map-wrapper {
    flex: 1;
}

.map-placeholder {
    height: 300px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.map-overlay {
    text-align: center;
    color: var(--color-text-muted);
}

.map-overlay svg {
    margin-bottom: 12px;
}

.map-overlay p {
    font-size: 14px;
}

.directions-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.directions-info p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    color: #48bb78;
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.selected-service {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.thanks-content > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.thanks-next {
    background: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: left;
    margin-bottom: 32px;
}

.thanks-next h2 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.thanks-next ul {
    padding-left: 20px;
}

.thanks-next li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 60px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 24px 0;
}

.disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    line-height: 1.6;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
    .split-content {
        flex-direction: column;
        min-height: auto;
    }

    .split-section.reverse .split-content {
        flex-direction: column;
    }

    .split-image {
        height: 300px;
    }

    .split-text {
        padding: 48px 24px;
    }

    .split-text h1 {
        font-size: 32px;
    }

    .services-grid {
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 12px);
    }

    .service-detail-content,
    .service-detail-content.reverse {
        flex-direction: column;
    }

    .price-card {
        position: static;
    }

    .maatwerk-options {
        flex-direction: column;
    }

    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 50%;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .ad-disclosure {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    .nav {
        display: none;
        width: 100%;
        order: 4;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-toggle {
        display: flex;
    }

    .intro-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .values-grid {
        flex-direction: column;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .split-text h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

    .price-amount {
        font-size: 28px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}
