body {
    margin: 0;
    font-family: 'Inter', 'Roboto', 'Open Sans', Arial, sans-serif;
    background: #fff;
    color: #222;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

html {
    overflow-x: hidden; /* Prevent horizontal scroll on html too */
}

/* Ensure all containers don't overflow */
* {
    box-sizing: border-box;
}
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
}
.logo {
    font-size: 2em;
    font-weight: 700;
    color: #0d6efd;
    letter-spacing: 1px;
    text-decoration: none;
}
.logo:hover, .logo:focus {
    text-decoration: none;
}
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    margin-left: 16px;
    transition: color 0.2s;
}
.nav-link:hover {
    color: #222;
}

/* Login button styling - separated from other nav links */
.nav-link.login-btn {
    background: #0d6efd;
    color: #fff !important;
    border: 2px solid #0d6efd;
    border-radius: 24px;
    padding: 8px 20px;
    margin-left: 24px;
    transition: all 0.3s ease;
    font-size: 1em;
    font-weight: 600;
}

.nav-link.login-btn:hover {
    background: #fff;
    color: #0d6efd !important;
    border-color: #0d6efd;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(13,110,253,0.15);
}

/* Mobile login button styling */
.nav-mobile .nav-link.login-btn {
    background: #fff;
    color: #0d6efd !important;
    border: 2px solid #fff;
    border-radius: 24px;
    padding: 12px 24px;
    margin: 12px 0 0 0;
    font-size: 1.2em;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-mobile .nav-link.login-btn:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin: 0; /* Changed from margin-left: 24px */
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: #0d6efd;
    margin: 4px 0;
    border-radius: 2px;
    display: block;
}
/* Modern slide-in overlay - starts hidden off-screen */
/* Mobile slide-in menu */
.nav-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen by default */
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: -4px 0 24px rgba(13, 110, 253, 0.1);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 80px 32px 32px 32px;
}

/* When open, slide into view */
.nav-overlay.open {
    right: 0;
}

/* Backdrop overlay */
.nav-overlay::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-overlay.open::before {
    opacity: 1;
    pointer-events: auto;
}

/* Add this new backdrop style */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999; /* Below menu but above content */
}

.menu-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

/* Close button (X) */
.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.close-menu:hover {
    background: rgba(13, 110, 253, 0.1);
}

.close-menu span {
    width: 20px;
    height: 2px;
    background: #666;
    position: absolute;
    transition: all 0.3s ease;
}

.close-menu span:nth-child(1) {
    transform: rotate(45deg);
}

.close-menu span:nth-child(2) {
    transform: rotate(-45deg);
}

.close-menu:hover span {
    background: #0d6efd;
}

.close-menu:active {
    transform: scale(0.9);
}

/* Mobile nav links - cleaner design */
.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.nav-mobile .nav-link {
    color: #0d6efd;
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
    padding: 14px 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    text-align: left;
    background: transparent;
}

.nav-mobile .nav-link:hover {
    background: #eaf3ff;
    transform: translateX(4px);
}

/* Subtle login button in mobile menu */
.nav-mobile .nav-link.login-btn {
    background: transparent;
    color: #0d6efd !important;
    border: 2px solid #0d6efd;
    border-radius: 12px;
    padding: 14px 20px;
    margin-top: 24px;
    font-size: 1.05em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.nav-mobile .nav-link.login-btn:hover {
    background: #0d6efd;
    color: #fff !important;
    transform: translateX(0) translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.login-icon {
    font-size: 1.1em;
}
.hero.improved-hero {
    background: linear-gradient(120deg, #eaf3ff 0%, #fff 100%);
    padding: 80px 0 64px 0;
}
.hero-flex {
    display: flex;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
}
.hero-left {
    flex: 1 1 65%;
}
.hero-left h1 {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 22px;
    color: #0d6efd;
    line-height: 1.15;
}
.hero-intro {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #222;
    line-height: 1.5;
}
.cta-btn.large {
    font-size: 1.1em;
    padding: 14px 36px;
    margin-top: 8px;
}
.hero-right {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
}
.video-block {
    background: #f9f9f9;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(13,110,253,0.10);
    overflow: hidden;
    max-width: 840px;
    width: 100%;
}
/* Benefits improved */
.benefits.improved-benefits {
    background: #f4f8fd;
    padding: 72px 0 64px 0;
}
.improved-benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
}
.improved-benefit {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(13,110,253,0.07);
    padding: 40px 28px 32px 28px;
    min-width: 220px;
    max-width: 340px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.benefit-icon {
    font-size: 3em;
    margin-bottom: 18px;
    color: #0d6efd;
    background: #eaf3ff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit-icon span {
    color: #0d6efd;
    filter: none;
}
.improved-benefit h3 {
    font-size: 1.3em;
    font-weight: 700;
    color: #0d6efd;
    margin: 0 0 12px 0;
}
.improved-benefit p {
    color: #222;
    font-size: 1.08em;
    margin: 0;
    line-height: 1.5;
}
/* Pricing improved */
.pricing.improved-pricing {
    background: #fff;
    padding: 72px 0 64px 0;
}
.improved-pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1100px;
}
.improved-pricing-column {
    background: #f4f8fd;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(13,110,253,0.09);
    padding: 48px 28px 40px 28px;
    min-width: 0;
    max-width: 270px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.improved-pricing-column h3 {
    color: #0d6efd;
    font-size: 1.5em;
    margin-bottom: 16px;
}
.improved-pricing-column .badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d6efd;
    color: #fff;
    font-size: 0.95em;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(13,110,253,0.10);
}
.improved-pricing-column ul {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px 0;
    color: #222;
    font-size: 1.08em;
}
.improved-pricing-column ul li {
    margin: 12px 0;
}
.price {
    font-size: 2.3em;
    color: #222;
    margin: 22px 0 18px 0;
}
.price span {
    font-size: 0.7em;
    color: #666;
}
/* Contact improved */
.contact.improved-contact {
    background: #f4f8fd;
    padding: 72px 0 64px 0;
    position: relative;
}
.improved-contact-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    justify-items: center;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}
.improved-contact-info, .improved-contact-form {
    width: 100%;
    max-width: 400px;
    min-width: 0;
}
.improved-contact-info {
    font-size: 1.1em;
}
.improved-contact-info h2 {
    color: #0d6efd;
    margin-bottom: 22px;
    font-size: 2em;
}
.improved-contact-info a {
    color: #0d6efd;
    text-decoration: none;
}
.improved-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px 32px 32px;
    box-shadow: 0 2px 16px rgba(13,110,253,0.10);
    font-size: 1.1em;
}
.improved-contact-form input, .improved-contact-form textarea {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #d1d9e6;
    font-size: 1em;
    font-family: inherit;
}
.improved-contact-form textarea {
    min-height: 100px;
    resize: vertical;
}
.improved-contact-form button {
    margin-top: 12px;
}
.form-message {
    margin-top: 16px;
    color: #0d6efd;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1em;
}
.form-message .success-icon {
    font-size: 1.3em;
    color: #198754;
}
.sticky-contact-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 36px;
    font-size: 1.15em;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(13,110,253,0.12);
    cursor: pointer;
    z-index: 200;
    display: none;
}
/* Footer improved */
.footer.improved-footer {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 40px 0 20px 0;
}
.improved-footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.privacy-link {
    color: #fff;
    text-decoration: underline;
    margin: 0 16px;
    font-size: 1.1em;
}
.improved-social-icons {
    display: flex;
    gap: 16px;
}
.social-icon {
    background: #eaf3ff;
    color: #0d6efd;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.2s, color 0.2s;
}
.social-icon:hover {
    background: #0d6efd;
    color: #fff;
    border: 1px solid #fff;
}
/* Typography & spacing */
h1, h2, h3 {
    letter-spacing: -0.5px;
}
section {
    margin-bottom: 0;
}
@media (max-width: 1200px) {
    .container {
        max-width: 98vw;
        width: 99vw;
    }
}
@media (max-width: 1024px) {
    .improved-benefits-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}
@media (max-width: 900px) {
    .hamburger {
        display: flex !important;
        position: fixed; /* Changed from absolute to fixed */
        right: 16px; /* Small padding from screen edge */
        left: auto;
        top: 15px; /* Fixed position from top */
        margin: 0;
        z-index: 1001;
    }
    .logo {
        margin-left: 0;
        text-align: left;
    }
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        height: 60px;
        gap: 0;
    }
    .nav {
        display: none;
    }
    .nav-overlay {
        display: none;
    }
    .nav-overlay.open {
        display: flex;
    }
    .hero-left h1 {
        font-size: 2.2em; /* Slightly larger than current 2em */
        text-align: center;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    .hero-intro {
        font-size: 1em;
        text-align: center;
        margin-bottom: 24px;
    }
    .hero-flex {
        align-items: center;
    }
    .about-us h2 {
        font-size: 1.3em;
    }
    .about-intro {
        font-size: 1em;
        margin-bottom: 24px;
    }
    .improved-contact-flex {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 98vw;
    }
    .improved-contact-info, .improved-contact-form {
        max-width: 98vw;
        min-width: 0;
        width: 100%;
    }
    .improved-pricing-table {
        grid-template-columns: 1fr;
        gap: 32px; /* Increase gap for better spacing */
        max-width: 450px; /* Better max width */
        margin: 0 auto;
    }
    .improved-pricing-column {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        padding: 40px 24px 32px 24px; /* Better padding */
    }
    .founders-list {
        flex-direction: column;
        gap: 32px;
    }
    .improved-benefits-list {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .container {
        width: 99vw;
        padding: 0;
    }
    .hero.improved-hero, .benefits.improved-benefits, .pricing.improved-pricing, .about-us, .contact.improved-contact {
        padding: 24px 0 16px 0;
    }
    .footer.improved-footer {
        padding: 18px 0 8px 0;
    }
    .plan-price {
        font-size: 1.3em;
    }
    .about-intro {
        font-size: 1em;
    }
    .founder-photo {
        width: 80px;
        height: 80px;
    }
    .contact-btn {
        font-size: 1em;
        padding: 12px 0;
        max-width: 98vw;
    }
    .improved-pricing-column {
        min-width: 0;
        max-width: 100%;
        padding: 32px 20px 24px 20px; /* Adjusted padding */
        font-size: 1em;
    }
    .plan-price {
        font-size: 1.1em;
    }
    .plan-subtitle {
        font-size: 1em;
    }
    .plan-note {
        font-size: 0.9em;
    }
    .cta-btn, .contact-btn {
        font-size: 0.97em;
        padding: 10px 0;
        max-width: 95vw;
    }
}
@media (max-width: 500px) {
    .logo {
        font-size: 1.2em;
    }
    .improved-footer-content {
        gap: 12px;
    }
}
@media (max-width: 400px) {
    .improved-pricing-column {
        max-width: 99vw;
        padding: 8px 2px 8px 2px;
        font-size: 0.93em;
    }
    .plan-price {
        font-size: 1em;
    }
    .cta-btn, .contact-btn {
        font-size: 0.93em;
        padding: 8px 0;
    }
}
/* Badge voor Beta en In ontwikkeling */
.badge.beta {
    background: #ffc107;
    color: #222;
    font-size: 0.95em;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(255,193,7,0.10);
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}
.badge.in-dev {
    background: #adb5bd;
    color: #fff;
    font-size: 0.95em;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(173,181,189,0.10);
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}
/* Omlijning voor tariefplannen */
.blue-outline {
    border: 2.5px solid #0d6efd !important;
}
.grey-outline {
    border: 2.5px solid #adb5bd !important;
}
/* Developing knop (verzenden) */
.developing {
    background: #adb5bd !important;
    color: #fff !important;
    border: none !important;
    cursor: not-allowed !important;
    box-shadow: 0 2px 8px rgba(173,181,189,0.10);
    opacity: 0.85;
    pointer-events: none;
}
/* Submit-knop in contactformulier */
.submit-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    margin-top: 18px;
    margin-bottom: 0;
}
.plan-subtitle {
    color: #0d6efd;
    font-weight: 700;
    font-size: 1.13em;
    margin-bottom: 12px;
    margin-top: -8px;
    letter-spacing: -0.2px;
}
.plan-note {
    color: #888;
    font-size: 0.97em;
    font-style: italic;
}
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.pricing-period-btn {
    background: #eaf3ff;
    color: #0d6efd;
    border: none;
    border-radius: 24px;
    padding: 10px 32px;
    font-size: 1.15em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(13,110,253,0.07);
    transition: background 0.2s, color 0.2s;
    margin: 0 4px;
}
.pricing-period-btn.active, .pricing-period-btn:focus {
    background: #0d6efd;
    color: #fff;
}
.plan-price {
    font-size: 2.2em;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 8px;
    margin-top: 0;
    text-align: center;
    letter-spacing: -1px;
}
.plan-price-unit {
    font-size: 0.5em;
    color: #666;
    font-weight: 400;
    margin-left: 2px;
}
.about-us {
    background: #fff;
    padding: 64px 0 56px 0;
    text-align: center;
}
.about-us h2 {
    color: #0d6efd;
    font-size: 2em;
    margin-bottom: 18px;
}
.about-intro {
    font-size: 1.18em;
    color: #222;
    margin-bottom: 38px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.founders-list {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.founder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.founder-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(13,110,253,0.10);
    border: 4px solid #eaf3ff;
    background: #f4f8fd;
}
.founder-name {
    font-size: 1.13em;
    font-weight: 700;
    color: #0d6efd;
    margin-top: 4px;
}
.founder-role {
    font-size: 1em;
    color: #888;
    margin-top: -4px;
    font-weight: 400;
    text-align: center;
}
@media (max-width: 700px) {
    .founders-list {
        flex-direction: column;
        gap: 32px;
    }
}
.contact-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 0;
    font-size: 1.15em;
    font-weight: 700;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 0 auto;
    display: block;
    box-shadow: 0 2px 8px rgba(13,110,253,0.12);
    transition: background 0.2s;
    cursor: pointer;
    text-decoration: none;
}
.contact-btn:hover, .contact-btn:focus {
    background: #084298;
}
/* --- Modern Hero & USP's --- */
.modern-hero {
    align-items: flex-start;
    gap: 48px;
    padding-top: 32px;
    padding-bottom: 24px;
}
.modern-hero .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.modern-hero-intro {
    font-size: 1.25em;
    color: #333;
    margin-bottom: 28px;
    font-weight: 500;
    line-height: 1.5;
}
.usp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: row;
    gap: 18px;
    justify-content: center;
}
.usp-list li {
    display: flex;
    align-items: center;
    font-size: 1.08em;
    color: #0d6efd;
    font-weight: 600;
    background: #eaf3ff;
    border-radius: 18px;
    padding: 10px 18px;
    box-shadow: 0 1px 4px rgba(13,110,253,0.04);
    transition: background 0.2s;
    min-width: 180px;
    justify-content: center;
    white-space: nowrap; /* Prevent text wrapping */
}
.usp-icon {
    font-size: 1.3em;
    margin-right: 12px;
    color: #0d6efd;
}
.modern-cta {
    font-size: 1.15em;
    padding: 16px 38px;
    border-radius: 30px;
    margin-top: 10px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(13,110,253,0.10);
}
.modern-video-block {
    box-shadow: 0 4px 24px rgba(13,110,253,0.13);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    max-width: 420px;
    width: 100%; /* Ensure full width up to max */
}

/* --- Extra Info onder Hero --- */
.hero-extra-info {
    background: #f4f8fd;
    padding: 32px 0 24px 0;
    border-bottom: 1px solid #eaf3ff;
}
.hero-extra-flex {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.hero-extra-block {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(13,110,253,0.07);
    padding: 32px 28px 28px 28px;
    min-width: 240px;
    max-width: 340px;
    margin-bottom: 18px;
}
.hero-extra-block h3 {
    color: #0d6efd;
    font-size: 1.18em;
    margin-bottom: 16px;
    font-weight: 700;
}
.hero-extra-block ul {
    list-style: disc inside;
    color: #222;
    font-size: 1.05em;
    margin: 0;
    padding-left: 18px;
}
.hero-extra-trust {
    text-align: center;
    min-width: 260px;
}
.trust-logos {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
}
.trust-logo {
    height: 38px;
    width: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(13,110,253,0.07);
    padding: 4px 10px;
    object-fit: contain;
    max-width: 110px;
}

@media (max-width: 900px) {
    .modern-hero {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .modern-video-block {
        max-width: 100%;
        width: 100%;
    }
    .hero-extra-flex {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .hero-extra-block {
        width: 100%;
        min-width: 0;
        max-width: 95vw;
        box-sizing: border-box;
        padding: 18px 8px 18px 8px;
    }
    .trust-logo {
        height: 28px;
        max-width: 80px;
    }
    .modern-hero .hero-left {
        align-items: center;
        text-align: center;
    }
}
@media (max-width: 700px) {
    .usp-list {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .usp-list li {
        min-width: 0;
        max-width: 350px;
        width: 100%;
        justify-content: flex-start;
        white-space: normal; /* Allow wrapping on mobile */
    }
}
@media (max-width: 700px) {
    .usp-list {
        flex-direction: column;
        gap: 12px;
    }
    .usp-list li {
        min-width: 0;
        font-size: 1em;
        padding: 12px 16px;
    }
}
.hero-sub {
    display: block;
    font-size: 0.55em;
    font-weight: 600;
    color: #0d6efd;
    margin-top: 6px;
    letter-spacing: 0.5px;
}
.bg-light {
    background-color: #f8f9fa;
}

/* Verbeterde sectie spacing */
section {
    padding: 80px 0;
}

section.bg-light {
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
} 

/* Update hero heading for better mobile scaling */
@media (max-width: 900px) {
    .hero-left h1 {
        font-size: 2.2em; /* Slightly larger than current 2em */
        text-align: center;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .hero-sub {
        font-size: 0.6em;
    }
}

@media (max-width: 600px) {
    .hero-left h1 {
        font-size: 1.8em;
        line-height: 1.25;
    }
}

/* Add new breakpoint for very small phones */
@media (max-width: 380px) {
    .hero-left h1 {
        font-size: 1.6em;
    }
    
    .logo {
        font-size: 1.1em;
    }
} 

@media (max-width: 900px) {
    .improved-contact-form {
        padding: 32px 20px;
        gap: 16px;
    }
    
    .improved-contact-form input,
    .improved-contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px; /* Minimum touch target */
    }
    
    .improved-contact-form textarea {
        min-height: 120px;
    }
}

@media (max-width: 600px) {
    .improved-contact-form {
        padding: 24px 16px;
    }
} 

/* Hamburger - Clean minimal design */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin: 0; /* Changed from margin-left: 24px */
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #0d6efd;
    margin: 3px 0;
    border-radius: 2px;
    display: block;
    transition: all 0.3s ease;
}

/* Hamburger animation to X */
/* Remove these - we only need the close button in the menu */
/* .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
} */ 