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

html {
    overflow-x: hidden;
    width: 100%;
}

.urgency-banner {
    background: #1d4ed8;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 22px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.urgency-banner p {
    margin: 0;
    letter-spacing: 0.5px;
}

/* Zorg dat header iets lager begint */
.header {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .urgency-banner {
        font-size: 15px;
        padding: 10px 16px;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #d4cdc3;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.credentials {
    text-align: left;
    font-size: 20px;
    margin-top: -50px;
}

.credentials ul {
    list-style: none;
    padding-left: 0;
    margin-top: 2.5rem;
}

.credentials li {
    padding-left: 1.5em;
    margin-bottom: 0.8em;
    position: relative;
}

.credentials li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

section {
    width: 100%;
    overflow-x: hidden;
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #b8aea0;
    width: 100%;
    overflow-x: hidden;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.highlight {
    color: black;
}

.highlight {
    font-weight: 700;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

/* Buttons */
.btn-primary {
    background: #2563EB;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-cta {
    background: #2563EB;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 30px;
}

.btn-cta:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-cta-large {
    background: #2563EB;
    color: white;
    padding: 20px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 30px 0;
}

.btn-cta-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* Hero Section - DESKTOP (Side by Side) */
.hero {
    padding: 80px 0;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-header {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 100%;
}

.hero-header h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subheader {
    font-size: 24px;
    color: #4a5568;
    line-height: 1.6;
}

.hero-image-container {
    width: 95%;
    grid-column: 1;
    grid-row: 2;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    border: #000000 solid 2px;
    margin-top: -10px;
    margin-left: -1.5rem;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-text {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
}

.hero-description {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

.hero-benefits {
    margin-top: 20px;
    color: #4a5568;
    font-size: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Problems Section */
.problems {
    padding: 100px 0;
    background: #d4cdc3;
    margin-top: -50px;
}

.problems h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.problem-card {
    background: #e8e3db;
    border: 1px solid #b8aea0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: #2563EB;
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.problem-card p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
}

/* Solution Section */
.solution {
    background: #d4cdc3;
    margin-top: 2rem;
}

.solution h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.solution-subtitle {
    text-align: center;
    color: #4a5568;
    font-size: 20px;
    margin-bottom: 60px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.solution-card {
    background: #e8e3db;
    border: 1px solid #b8aea0;
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: #6366F1;
    transform: translateY(-5px);
}

.solution-icon {
    margin-bottom: 20px;
    display: inline-block;
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.solution-card p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
}

/* Ideal Client Section */
.ideal-client {
    padding: 100px 0;
    background: #d4cdc3;
}

.ideal-client h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: #4a5568;
    font-size: 20px;
    margin-bottom: 60px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.criteria-item {
    background: #e8e3db;
    border: 1px solid #b8aea0;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.criteria-item:hover {
    border-color: #10B981;
    transform: translateY(-5px);
}

.criteria-item .checkmark {
    flex-shrink: 0;
    margin-top: 2px;
}

.criteria-item p {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: #d4cdc3;
}

.testimonials h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.testimonial-card {
    background: #e8e3db;
    border: 1px solid #b8aea0;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #2563EB;
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 60px;
    color: #2563EB;
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
}

.testimonial-author span {
    color: #64748b;
    font-size: 14px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #d4cdc3 0%, #c9c0b3 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-subtitle {
    color: #4a5568;
    font-size: 20px;
    margin-bottom: 20px;
}

.cta-benefits {
    color: #4a5568;
    font-size: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    width: 100%;
}

.faq-item {
    background: #e8e3db;
    border: 1px solid #b8aea0;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}

.faq-item p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
    padding: 40px 0;
    background: #d4cdc3;
    border-top: 1px solid #b8aea0;
}

.trust-badges .container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
    font-size: 14px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #d4cdc3;
    border-top: 1px solid #b8aea0;
    text-align: center;
}

.footer p {
    color: #64748b;
    font-size: 14px;
}


/* Certifications Section */
.certifications {
    padding: 80px 0;
    background: #d4cdc3;
}

.certifications h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.certifications .section-subtitle {
    text-align: center;
    color: #4a5568;
    font-size: 20px;
    margin-bottom: 60px;
}

.cert-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.cert-image-card {
    background: #e8e3db;
    border: 2px solid #b8aea0;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.cert-image-card:hover {
    border-color: #10B981;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.cert-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cert-caption {
    text-align: center;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .certifications {
        padding: 60px 0;
    }
    
    .certifications h2 {
        font-size: 32px;
    }
    
    .certifications .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .cert-images {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cert-image-card {
        padding: 15px;
    }
    
    .cert-caption {
        font-size: 15px;
    }
}
/* Responsive Design */
@media (max-width: 1024px) {
    .hero-header h1 {
        font-size: 44px;
    }
    
    .hero-subheader {
        font-size: 20px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Header */
    .header {
        padding: 16px 0;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Hero Section - MOBILE (Stacked) */
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-header {
        text-align: center;
    }
    
    .hero-header h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subheader {
        font-size: 18px;
    }
    
    .hero-image-container {
        order: 2;
        margin-left: 3rem;
    }
    
    .hero-text {
        order: 3;
        text-align: center;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn-cta {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .hero-benefits {
        font-size: 13px;
        justify-content: center;
    }
    
    /* Problems Section */
    .problems {
        padding: 60px 0;
    }
    
    .problems h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card {
        padding: 30px 20px;
    }
    
    .problem-icon {
        font-size: 50px;
    }
    
    .problem-card h3 {
        font-size: 20px;
        margin-top: -1rem;
    }
    
    .problem-card p {
        font-size: 15px;
    }
    
    /* Solution Section */
    .solution {
        padding: 60px 0;
    }
    
    .solution h2 {
        font-size: 32px;
    }
    
    .solution-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-card {
        padding: 30px 20px;
    }
    
    .solution-card h3 {
        font-size: 18px;
    }
    
    /* Ideal Client Section */
    .ideal-client {
        padding: 60px 0;
    }
    
    .ideal-client h2 {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .criteria-item {
        padding: 16px;
    }
    
    .criteria-item p {
        font-size: 15px;
    }
    
    /* Testimonials Section */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .quote-icon {
        font-size: 50px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    /* Final CTA Section */
    .final-cta {
        padding: 60px 0 40px;
    }
    
    .final-cta h2 {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .btn-cta-large {
        width: 100%;
        padding: 16px 30px;
        font-size: 18px;
    }
    
    .cta-benefits {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 16px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
    
    /* Trust Badges */
    .trust-badges .container {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .badge-item {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-header h1 {
        font-size: 28px;
    }
    
    .hero-subheader {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .problems h2,
    .solution h2,
    .ideal-client h2,
    .testimonials h2,
    .final-cta h2 {
        font-size: 28px;
    }
    
    .problem-icon {
        font-size: 40px;
    }
}

/* Navigation Menu */
.main-nav {
    background: #ffffff;
    border-bottom: 2px solid #b8aea0;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 40px;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #e8e3db;
    transform: translateY(-2px);
}

.nav-link.active {
    background:white;
    color: black;
    border-radius: 10px;
    border: #000000 solid 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        position: relative;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 16px;
    }
}