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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #ffffff;
}

.ad-disclosure {
    background: #fef3c7;
    color: #78350f;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #fbbf24;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    position: relative;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a202c;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 80px 48px;
    position: relative;
    align-items: center;
}

.hero-content-offset {
    flex: 1;
    max-width: 580px;
    z-index: 2;
    padding-right: 60px;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 24px;
    letter-spacing: -1.2px;
}

.hero-subtext {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #1a202c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s;
}

.cta-primary:hover {
    background: #2d3748;
}

.hero-image-overlap {
    position: absolute;
    right: 48px;
    top: 140px;
    width: 48%;
    height: 520px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.story-block-left {
    display: flex;
    padding: 120px 48px;
    gap: 80px;
    align-items: center;
    background: #f7fafc;
    position: relative;
}

.story-text-narrow {
    flex: 1;
    max-width: 560px;
}

.story-text-narrow h2 {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 28px;
}

.story-text-narrow p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.75;
}

.story-image-overlap-right {
    width: 420px;
    height: 340px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    top: -40px;
    background-color: #cbd5e0;
}

.story-image-overlap-right img {
    width: 100%;
    height: 100%;
}

.insight-offset {
    padding: 100px 48px;
    display: flex;
    justify-content: flex-end;
}

.insight-card-tilted {
    background: #2d3748;
    color: #ffffff;
    padding: 48px 56px;
    border-radius: 8px;
    max-width: 520px;
    transform: rotate(-1deg);
}

.insight-card-tilted h3 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 700;
}

.insight-list {
    list-style: none;
}

.insight-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.insight-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    font-size: 28px;
    color: #fc8181;
    font-weight: 700;
}

.diensten-asymmetric {
    padding: 120px 48px;
    background: #ffffff;
}

.section-heading-offset {
    font-size: 44px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    margin-left: 80px;
}

.section-intro {
    font-size: 19px;
    color: #4a5568;
    max-width: 640px;
    margin-left: 80px;
    margin-bottom: 64px;
    line-height: 1.7;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-large {
    width: calc(55% - 16px);
}

.card-offset-top {
    width: calc(45% - 16px);
    margin-top: -60px;
}

.card-small {
    width: calc(38% - 16px);
}

.card-offset-bottom {
    width: calc(37% - 16px);
    margin-top: 40px;
}

.card-wide {
    width: calc(62% - 16px);
    margin-top: -20px;
}

.service-image-bg {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 32px 28px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.service-content p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background: #edf2f7;
    border: 2px solid #cbd5e0;
    color: #2d3748;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
}

.btn-select-service:hover {
    background: #1a202c;
    color: #ffffff;
    border-color: #1a202c;
}

.btn-select-service.selected {
    background: #48bb78;
    color: #ffffff;
    border-color: #48bb78;
}

.testimonial-overlap {
    padding: 100px 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.testimonial-content {
    max-width: 720px;
    margin: 0 auto;
    margin-left: 120px;
}

.testimonial-content blockquote {
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 17px;
    color: #e9d8fd;
    font-style: normal;
}

.benefits-stacked {
    padding: 120px 48px;
    background: #f7fafc;
}

.benefits-stacked h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 56px;
    text-align: center;
}

.benefits-columns-uneven {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-block {
    flex: 1;
    padding: 36px 32px;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #cbd5e0;
}

.benefit-highlight {
    flex: 1.3;
    border-left-color: #667eea;
    transform: translateY(-20px);
}

.benefit-block h4 {
    font-size: 21px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.benefit-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.form-section-diagonal {
    padding: 120px 48px;
    background: linear-gradient(175deg, #ffffff 0%, #f7fafc 50%);
    position: relative;
}

.form-container-offset {
    max-width: 580px;
    margin-left: auto;
    margin-right: 120px;
    background: #ffffff;
    padding: 48px 44px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-container-offset h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
}

.form-container-offset > p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    padding: 16px 32px;
    background: #1a202c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #2d3748;
}

.disclaimer-section {
    padding: 60px 48px;
    background: #edf2f7;
}

.disclaimer-text {
    max-width: 920px;
    margin: 0 auto;
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
    text-align: center;
}

.footer-asymmetric {
    background: #1a202c;
    color: #cbd5e0;
    padding: 80px 48px 32px 48px;
}

.footer-content-irregular {
    display: flex;
    gap: 60px;
    margin-bottom: 48px;
    justify-content: space-between;
}

.footer-block h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-about {
    flex: 1.5;
    max-width: 380px;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-links {
    flex: 1;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    flex: 1;
}

.footer-contact p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 28px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 24px 48px;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #38a169;
}

.btn-cookie-reject {
    background: transparent;
    color: #cbd5e0;
    border: 2px solid #cbd5e0;
}

.btn-cookie-reject:hover {
    background: #4a5568;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 32px;
    }

    .hero-content-offset {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
    }

    .story-block-left {
        flex-direction: column;
        padding: 80px 32px;
    }

    .story-image-overlap-right {
        width: 100%;
        top: 0;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .card-large,
    .card-offset-top,
    .card-small,
    .card-offset-bottom,
    .card-wide {
        width: 100%;
        margin-top: 0;
    }

    .benefits-columns-uneven {
        flex-direction: column;
    }

    .benefit-highlight {
        transform: none;
    }

    .footer-content-irregular {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-asymmetric {
        padding: 20px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content-offset h1 {
        font-size: 36px;
    }

    .section-heading-offset {
        font-size: 32px;
        margin-left: 0;
    }

    .section-intro {
        margin-left: 0;
    }

    .form-container-offset {
        margin-right: 0;
    }

    .cookie-content {
        flex-direction: column;
    }
}