        * {

/* Links zonder underline voor service-items en lock-type-cards */
a.service-item, a.lock-type-card {
    text-decoration: none;
    color: inherit;
}
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #ffffff;
        }

        /* COLOR SCHEME */
        :root {
            --dark-blue: #2A5798;
            --light-blue: #2493EA;
            --gold: #FDB704;
            --green-bright: #00A32A;
            --light-gray: #F9F9F9;
            --dark-gray: #333333;
            --text-gray: #666666;
            --border-gray: #E0E0E0;
            --nav-dark: #31313C;
            --icon-pink: #CC3366;
            --text-dark: #262631;
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background-color: var(--light-gray);
            color: var(--text-dark);
            padding: 10px 0;
            font-size: 13px;
        }

        .top-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: flex-start;
            gap: 30px;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.3s ease;
        }

        .top-bar-item:hover {
            opacity: 0.8;
        }

        .top-bar-item.phone i {
            color: var(--dark-blue);
            font-size: 14px;
        }

        .top-bar-item.email i {
            color: var(--dark-blue);
            font-size: 14px;
        }

        /* ===== NAVIGATION BAR (with integrated logo) ===== */
        nav.main-nav {
            background-color: #ffffff;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-gray);
            position: relative;
        }

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

        .nav-logo img {
            max-width: 180px;
            height: auto;
            display: block;
        }

        .nav-items {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
        }

        .nav-items a {
            display: block;
            color: var(--text-dark);
            text-decoration: none;
            padding: 0 22px;
            line-height: 70px;
            height: 70px;
            text-align: center;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-items a:hover {
            color: var(--dark-blue);
        }

        .nav-items a.nav-cta {
            background-color: var(--gold);
            color: #ffffff;
            font-weight: 600;
            border-radius: 6px;
            padding: 0 24px;
            line-height: 42px;
            height: 42px;
            margin: 14px 0 14px 10px;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .nav-items a.nav-cta:hover {
            background-color: #e5a003;
            transform: translateY(-1px);
        }

        /* Secondary Navigation - White bar with large headings */
        .secondary-nav {
            background-color: #ffffff;
            border-top: 1px solid #E5E5E5;
            border-bottom: 1px solid #E5E5E5;
        }

        .secondary-nav-items {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0;
            list-style: none;
        }

        .secondary-nav-items li {
            flex: 1;
        }

        .secondary-nav-items a {
            display: block;
            color: var(--nav-dark);
            text-decoration: none;
            padding: 18px 15px;
            text-align: center;
            font-size: 28px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .secondary-nav-items a.subnav-highlight {
            font-size: 28px;
            font-weight: 500;
            color: var(--icon-pink);
        }

        .secondary-nav-items a:hover {
            color: var(--light-blue);
        }

        /* ===== HAMBURGER MENU ===== */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            z-index: 1000;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background-color: var(--text-dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

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

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

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

        /* ===== USP BAR ===== */
        .usp-bar {
            background-color: var(--dark-blue);
            padding: 8px 0;
        }

        .usp-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .usp-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 500;
            color: #ffffff;
        }

        .usp-item i {
            color: var(--gold);
            font-size: 13px;
        }

        a.usp-contact {
            text-decoration: none;
            color: #ffffff;
            transition: opacity 0.3s ease;
        }

        a.usp-contact:hover {
            opacity: 0.7;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            background-color: #ffffff;
            padding: 60px 0;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 60% 40%;
            gap: 40px;
            align-items: center;
        }

        .hero-left {
            flex: 0 0 55%;
        }

        .hero-right {
            flex: 0 0 45%;
            position: relative;
        }

        .hero h1 {
            font-size: 36px;
            font-weight: 700;
            color: var(--dark-blue);
            line-height: 1.15;
            margin-bottom: 10px;
        }

        .hero-subtitle {
            font-size: 15px;
            color: #373737;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .hero-subtitle strong {
            color: #373737;
            font-weight: 600;
        }

        /* Google Reviews Badge */
        .google-review-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #ffffff;
            border-radius: 6px;
            padding: 6px 12px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
            border: 1px solid var(--border-gray);
        }

        .google-review-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .google-review-info {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .google-review-stars {
            display: flex;
            align-items: center;
            gap: 1px;
        }

        .google-review-stars .star {
            color: #FBBC05;
            font-size: 13px;
            line-height: 1;
        }

        .google-review-score {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-dark);
            margin-left: 4px;
            line-height: 1;
        }

        .google-review-text {
            font-size: 11px;
            color: var(--text-gray);
            line-height: 1.2;
        }

        .guarantee-box {
            background: linear-gradient(135deg, #2A5798 0%, #1e4578 100%);
            border-radius: 12px;
            padding: 0;
            color: #ffffff;
            margin-bottom: 12px;
            position: relative;
            max-width: 500px;
            box-shadow: 0 8px 24px rgba(42, 87, 152, 0.3), 0 2px 6px rgba(0,0,0,0.1);
        }

        .guarantee-box-top {
            padding: 20px 22px 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .guarantee-shield {
            flex-shrink: 0;
            width: 34px;
            height: 34px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }

        .guarantee-box h2 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 0;
            color: #ffffff;
        }

        .guarantee-box-middle {
            padding: 10px 22px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 24px;
        }

        .guarantee-box-bottom {
            padding: 10px 22px 18px;
        }

        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .guarantee-checkmark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 16px;
            height: 16px;
            min-width: 16px;
            background-color: var(--green-bright);
            border-radius: 50%;
            color: #ffffff;
            font-size: 9px;
        }

        .guarantee-item p {
            font-size: 12px;
            line-height: 1.2;
        }

        .guarantee-item a {
            color: #ffffff;
            text-decoration: underline;
            text-decoration-color: rgba(255,255,255,0.5);
            transition: opacity 0.3s ease;
        }

        .guarantee-item a:hover {
            opacity: 0.8;
        }

        .safety-badge {
            position: absolute;
            top: -20px;
            right: 20px;
            width: 120px;
            height: auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            background: white;
            padding: 8px;
        }

        .safety-badge img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-phone {
            background-color: var(--light-blue);
            color: #ffffff;
        }

        .btn-phone:hover {
            background-color: #1a7bc8;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(36, 147, 234, 0.3);
        }

        .btn-quote {
            background-color: var(--gold);
            color: #ffffff;
        }

        .btn-quote:hover {
            background-color: #e6a600;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(253, 183, 3, 0.3);
        }

        .btn-link {
            background: transparent;
            color: var(--light-blue);
            text-decoration: underline;
            padding: 0;
            border-radius: 0;
        }

        .btn-link:hover {
            opacity: 0.8;
            transform: none;
        }

        .hero-image {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
            object-position: top;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        /* Logo Row */
        .trust-row {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .logo-row {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            flex-wrap: wrap;
        }

        .logo-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-item img {
            max-height: 45px;
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            font-size: 14px;
            color: var(--light-blue);
            font-weight: 600;
        }

        /* Mobile only utility */
        .mobile-only {
            display: none;
        }

        /* ===== SERVICES SECTION (Waar mogen we u mee helpen) ===== */
        .services-section {
            background-color: var(--dark-blue);
            color: #ffffff;
            padding: 40px 0;
        }

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

        .services-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .services-header h2 {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 12px;
            color: #ffffff;
        }

        .services-header p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            overflow: hidden;
        }

        .service-item {
            background-color: var(--dark-blue);
            padding: 20px 15px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background-color 0.3s ease;
        }

        .service-item:nth-child(4n) {
            border-right: none;
        }

        .service-item:nth-child(n + 9) {
            border-bottom: none;
        }

        .service-item:hover {
            background-color: rgba(255, 255, 255, 0.08);
            transform: scale(1.03);
        }

        .service-item {
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .service-icon {
            font-size: 28px;
            margin-bottom: 10px;
            color: var(--light-blue);
        }

        .service-item h3 {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 0;
            color: #ffffff;
        }

        .service-item p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.75);
        }

        /* ===== REVIEWS SECTION ===== */
        .reviews-section {
            background-color: var(--light-gray);
            padding: 50px 0;
        }

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

        .reviews-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .reviews-header h2 {
            font-size: 28px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .reviews-header p {
            font-size: 14px;
            color: var(--text-gray);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .review-card {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 24px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .review-card-top {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .review-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: var(--dark-blue);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 16px;
            flex-shrink: 0;
        }

        .review-info {
            display: flex;
            flex-direction: column;
        }

        .review-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .review-date {
            font-size: 11px;
            color: var(--text-gray);
        }

        .review-stars {
            color: #FBBC05;
            font-size: 15px;
            letter-spacing: 1px;
        }

        .review-text {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .review-source {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: var(--text-gray);
            margin-top: auto;
        }

        .review-source svg {
            width: 14px;
            height: 14px;
        }

        /* Mini reviews (before CTA) */
        .mini-reviews {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px 30px;
            text-align: center;
        }

        .mini-reviews-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .mini-review {
            background-color: #ffffff;
            border-radius: 8px;
            padding: 16px 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            text-align: left;
        }

        .mini-review-text {
            font-size: 13px;
            color: var(--text-gray);
            line-height: 1.5;
            font-style: italic;
            margin-bottom: 8px;
        }

        .mini-review-author {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            background-color: var(--gold);
            color: #ffffff;
            padding: 50px 0;
            text-align: center;
        }

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

        .cta-banner h2,
        .cta-banner h4 {
            font-size: 24px;
            font-weight: 600;
            flex: 1;
            color: #ffffff;
        }

        .cta-banner .btn {
            flex-shrink: 0;
        }

        /* ===== TEAM SECTION ===== */
        .team-section {
            background-color: #ffffff;
            padding: 60px 0;
        }

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

        .team-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .team-header h2 {
            font-size: 32px;
            font-weight: 500;
            color: #000000;
            margin-bottom: 10px;
        }

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

        .team-member {
            text-align: center;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .team-member-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            object-position: top center;
            background-color: var(--light-gray);
        }

        .team-member-info {
            padding: 25px;
        }

        .team-member h3 {
            font-size: 32px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .team-member p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.5;
        }

        /* ===== LOCK TYPES SECTION ===== */
        .lock-types-section {
            background-color: var(--dark-blue);
            color: #ffffff;
            padding: 60px 0;
        }

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

        .lock-types-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .lock-types-header h2 {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .lock-types-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .lock-type-card {
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 25px;
            transition: all 0.3s ease;
        }

        .lock-type-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
        }

        .lock-type-image {
            width: 100%;
            height: 180px;
            object-fit: contain;
            background-color: #ffffff;
            border-radius: 6px;
            margin-bottom: 12px;
            padding: 10px;
        }

        .lock-type-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #ffffff;
        }

        /* ===== PROFESSIONAL SECTION ===== */
        .professional-section {
            background-color: var(--light-gray);
            padding: 40px 0;
        }

        .professional-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .professional-left {
            text-align: left;
        }

        .professional-left img {
            width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .professional-right {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .professional-right h2 {
            font-size: 26px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .professional-right p {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .professional-right ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .professional-right li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--text-gray);
        }

        .professional-right li:before {
            content: "✓";
            display: flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            min-width: 22px;
            background-color: var(--green-bright);
            color: white;
            border-radius: 50%;
            font-weight: bold;
            font-size: 12px;
            margin-top: 2px;
        }

        .prof-usps {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 15px 0;
        }

        .prof-usp {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-gray);
        }

        .prof-usp i {
            color: var(--dark-blue);
            font-size: 14px;
        }

        /* ===== TESTIMONIALS / CLIENT LOGOS ===== */
        .testimonials-section {
            background-color: #ffffff;
            padding: 30px 0;
            border-top: 1px solid var(--border-gray);
            border-bottom: 1px solid var(--border-gray);
        }

        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .testimonials-header h2 {
            font-size: 22px;
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 0;
        }

        .client-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .client-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 60px;
            flex: 1;
            min-width: 150px;
            max-width: 200px;
        }

        .client-logo img {
            max-width: 100%;
            max-height: 50px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .client-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* ===== NEWSPAPER / REGIO SECTION ===== */
        .newspaper-section {
            background-color: #ffffff;
            padding: 40px 0;
        }

        .newspaper-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .newspaper-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }

        .newspaper-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .newspaper-content h2,
        .newspaper-text h2 {
            font-size: 26px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .newspaper-content p,
        .newspaper-text p {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .newspaper-content .btn-link {
            display: inline-block;
        }

        /* ===== STATS BAR ===== */
        .stats-section {
            background-color: #ffffff;
            padding: 40px 0;
            border-top: 1px solid var(--border-gray);
            border-bottom: 1px solid var(--border-gray);
        }

        .stats-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            padding: 30px 20px;
            background-color: var(--dark-blue);
            border-radius: 10px;
            color: #ffffff;
        }

        .stat-item h3 {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            line-height: 1;
        }

        .stat-item p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
        }

        /* ===== CONTACT SECTION ===== */
        .contact-section {
            background-color: #ffffff;
            padding: 60px 0;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .contact-section h2 {
            font-size: 32px;
            font-weight: 600;
            color: #000000;
            margin-bottom: 15px;
        }

        .contact-section p {
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== WERKGEBIED SECTION ===== */
        .werkgebied-section {
            background-color: #f5f5f5;
            color: var(--text-dark);
            padding: 60px 0;
        }

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

        .werkgebied-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .werkgebied-header h2 {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .werkgebied-header p {
            color: var(--text-gray);
        }

        .accordion {
            border: 1px solid var(--border-gray);
            border-radius: 8px;
            overflow: hidden;
            background-color: #ffffff;
        }

        .accordion-item {
            border-bottom: 1px solid var(--border-gray);
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-header {
            background-color: #ffffff;
            border: none;
            color: var(--text-dark);
            padding: 18px 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
            width: 100%;
        }

        .accordion-header:hover {
            background-color: #f0f0f0;
        }

        .accordion-header.active {
            background-color: #eaeaea;
        }

        .accordion-header i {
            color: var(--dark-blue);
        }

        .accordion-content {
            display: none;
            background-color: #fafafa;
            padding: 20px 25px;
            color: var(--text-gray);
            font-size: 14px;
            line-height: 1.6;
        }

        .accordion-content.active {
            display: block;
        }

        /* ===== FOOTER ===== */
        footer {
            background-color: var(--dark-blue);
            color: #ffffff;
            padding: 50px 0 0;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
            display: grid;
            grid-template-columns: 1.2fr 1.5fr 1fr 1fr;
            gap: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-column h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

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

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

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }

        .footer-column ul li a:hover {
            color: #ffffff;
        }

        .footer-column p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .footer-cities a {
            color: #ffffff;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .footer-cities a:hover {
            opacity: 0.8;
        }

        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 25px 20px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-bottom p {
            margin: 0;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }

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

        .accordion-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 145px;
            right: 20px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: var(--nav-dark);
            color: #ffffff;
            border: none;
            cursor: pointer;
            font-size: 18px;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            z-index: 999;
            transition: opacity 0.3s ease;
        }

        .scroll-top.show {
            display: flex;
        }

        .scroll-top:hover {
            opacity: 0.8;
        }

        /* ===== FLOATING BUTTONS ===== */
        .floating-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }

        .float-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        }

        .float-btn.whatsapp {
            background-color: #25D366;
        }

        .float-btn.phone {
            background-color: var(--light-blue);
        }

        /* ===== USP GRID (Wat je kunt verwachten) ===== */
        .usp-grid-section {
            background-color: var(--light-gray);
            padding: 60px 0;
        }

        .usp-grid-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .usp-grid-container h2 {
            text-align: center;
            color: var(--text-dark);
            margin-bottom: 40px;
            font-size: 28px;
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .usp-card {
            background: #ffffff;
            border-radius: 10px;
            padding: 24px 16px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .usp-card-icon {
            width: 50px;
            height: 50px;
            background: var(--dark-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
        }

        .usp-card-icon i {
            color: #fff;
            font-size: 20px;
        }

        .usp-card p {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-dark);
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {

            /* USP Grid: 4 -> 2 kolommen op tablet */
            .usp-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .usp-grid-section {
                padding: 40px 0;
            }

            .usp-grid-container h2 {
                margin-bottom: 25px;
                font-size: 24px;
            }
            .mobile-only {
                display: none !important;
            }

            .guarantee-cta-desktop {
                display: none !important;
            }

            .guarantee-cta-mobile {
                display: flex !important;
            }

            .nav-container {
                padding: 10px 20px;
            }

            .nav-logo img {
                max-width: 150px;
            }

            .hero {
                padding: 25px 0 30px;
            }

            .hero h1 {
                margin-bottom: 6px;
            }

            .hero-subtitle {
                margin-bottom: 10px;
            }

            .guarantee-box {
                margin-bottom: 10px;
            }

            .trust-row {
                margin-top: 8px;
            }

            .hamburger {
                display: flex !important;
            }

            .nav-items {
                display: none !important;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #ffffff;
                box-shadow: 0 8px 20px rgba(0,0,0,0.1);
                z-index: 999;
                flex-direction: column;
                gap: 0;
            }

            .nav-items.active {
                display: flex !important;
            }

            .nav-items a {
                border-bottom: 1px solid var(--border-gray) !important;
                line-height: normal !important;
                height: auto !important;
                padding: 14px 20px !important;
                color: var(--text-dark) !important;
                font-size: 14px !important;
            }

            .nav-items li:last-child a {
                border-bottom: none !important;
            }

            .nav-items a.nav-cta {
                background-color: var(--gold) !important;
                color: #ffffff !important;
                font-weight: 600 !important;
                border-radius: 6px !important;
                margin: 10px 20px !important;
                text-align: center !important;
                border-bottom: none !important;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

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

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-item {
                border-right: none !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
            }

            .service-item:last-child {
                border-bottom: none !important;
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .lock-types-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .professional-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .professional-container.mobile-reverse {
                display: flex;
                flex-direction: column-reverse;
                gap: 30px;
            }

            .newspaper-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .cta-banner-container {
                flex-direction: column;
                text-align: center;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .client-logos {
                gap: 20px;
            }

            .client-logo {
                min-width: 150px;
                max-width: 200px;
                height: 60px;
            }

            .hero-buttons {
                flex-direction: column;
            }

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

            .usp-bar-container {
                gap: 6px 16px;
                justify-content: center;
                font-size: 11px;
            }

            .usp-item {
                font-size: 11px !important;
                gap: 5px !important;
            }

            .usp-item i {
                font-size: 11px !important;
            }

            a.usp-contact {
                font-size: 11px !important;
            }

            .trust-row {
                justify-content: center;
            }

            .secondary-nav-items {
                flex-direction: column;
            }

            .secondary-nav-items a {
                border-bottom: 1px solid #E5E5E5;
            }

            .secondary-nav-items li:last-child a {
                border-bottom: none;
            }

            .accordion-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .prof-usps {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 8px;
                text-align: left;
            }

            .prof-usp {
                font-size: 12px;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .mini-reviews-row {
                grid-template-columns: 1fr;
            }

            .logo-row {
                justify-content: center;
            }

            .floating-buttons {
                right: 12px;
                bottom: 16px;
                gap: 10px;
                z-index: 9999;
            }

            .float-btn {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }

            /* Floating buttons niet overlappen met footer */
            footer {
                padding-bottom: 80px;
            }
        }

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

            .services-header h2,
            .team-header h2,
            .lock-types-header h2,
            .professional-right h2,
            .newspaper-content h2,
            .contact-section h2,
            .werkgebied-header h2,
            .usp-grid-container h2 {
                font-size: 24px;
            }

            /* USP Grid: 2 kolommen blijft, maar kleiner */
            .usp-card {
                padding: 18px 12px;
            }

            .usp-card-icon {
                width: 42px;
                height: 42px;
            }

            .usp-card-icon i {
                font-size: 17px;
            }

            .usp-card p {
                font-size: 13px;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .cta-banner {
                padding: 30px 0;
            }

            .cta-banner-container {
                flex-direction: column;
            }

            .cta-banner h2 {
                font-size: 22px;
            }

            .floating-buttons {
                right: 10px;
                bottom: 12px;
                gap: 8px;
            }

            .float-btn {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }
        }
