       :root {
            --dark-background: #1a1a1a;
            --text-color-light: #f0f0f0;
            --text-color-grey: #a0a0a0;
            --purple-button: #9c27b0;
            --border-color: #333;
            --column-gap: 30px; /* Variabele voor de ruimte tussen de kolommen */
            --row-gap: 30px; /* Variabele voor de ruimte tussen de rijen */
        }
		
		      .header-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            color: #2b2b2b;
            font-size: 14px;
        }
        
   
		
		
		
		        .growth-strategy-section {
            background-color: #ffffff; /* Donkerpaarse achtergrond */
            color: #000000;
            padding: 100px 0px 0px 0px;
        }

        .growth-strategy-section .grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Twee kolommen */
            gap: 80px; /* Ruimte tussen de kolommen */
            align-items: flex-start;
        }

        .growth-strategy-section .left-column h2 {
            font-size: 39px;
            line-height: 1.1;
            margin-top: 0;
            margin-bottom: 30px;
            color: #000000;
            font-weight: normal;
            text-align: left;
        }

        .growth-strategy-section .right-column .intro-text {
            font-size: 17px;
            line-height: 1.6;
            margin-bottom: 50px;
        }

        .growth-strategy-section .stats-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .growth-strategy-section .stats-list li {
            font-size: 1.5em;
            margin-bottom: 25px;
            display: flex;
            align-items: baseline;
        }

        .growth-strategy-section .stats-list li:last-child {
            margin-bottom: 0;
        }

        .growth-strategy-section .stats-list .number {
            font-weight: bold;
            font-size: 1.3em; /* Maak het nummer iets groter */
            margin-right: 15px;
            color: #000000; /* Wit voor de nummers */
            display: inline-block;
            min-width: 60px; /* Vaste breedte voor nummers, zodat ze netjes uitlijnen */
        }

        .growth-strategy-section .stats-list .description {
            opacity: 0.9;
        }

        .growth-strategy-section .quote-block {
            margin-top: 100px; /* Ruimte tussen de content en de quote */
            padding-top: 40px;
            border-top: 1px solid rgb(0 0 0 / 30%); /* Scheidingslijn */
        }

        .growth-strategy-section .quote-text {
            font-size: 20px;
            line-height: 1.6;
            margin-bottom: 30px;
            font-style: italic;
            opacity: 0.9;
        }

        .growth-strategy-section .author-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .growth-strategy-section .author-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%; /* Ronde afbeelding */
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.5); /* Lichte rand */
        }

        .growth-strategy-section .author-details p {
            margin: 0;
            font-size: 0.95em;
            line-height: 1.3;
        }

        .growth-strategy-section .author-details .author-name {
            font-weight: bold;
            color: #000000;
        }

        .growth-strategy-section .author-details .author-title {
            opacity: 0.7;
            font-size: 0.85em;
        }

        /* ========================================= */
        /* Media Queries voor Responsiviteit */
        /* ========================================= */

        @media (max-width: 1024px) {
            .growth-strategy-section .grid-container {
                gap: 50px;
            }
            .growth-strategy-section .left-column h2 {
                font-size: 2.8em;
            }
            .growth-strategy-section .stats-list li {
                font-size: 1.3em;
            }
        }

        @media (max-width: 768px) {
            .growth-strategy-section {
                padding: 60px 0;
            }
            .growth-strategy-section .grid-container {
                grid-template-columns: 1fr; /* Kolommen onder elkaar */
                gap: 40px;
            }
            .growth-strategy-section .left-column h2 {
                font-size: 2.2em;
            }
            .growth-strategy-section .right-column .intro-text {
                margin-bottom: 30px;
            }
            .growth-strategy-section .stats-list li {
                font-size: 1.1em;
            }
            .growth-strategy-section .stats-list .number {
                 min-width: 40px;
            }
            .growth-strategy-section .quote-block {
                margin-top: 60px;
            }
            .growth-strategy-section .quote-text {
                font-size: 1.1em;
            }
        }

        @media (max-width: 480px) {
            .growth-strategy-section .left-column h2 {
                font-size: 1.8em;
            }
            .growth-strategy-section .stats-list li {
                font-size: 1em;
            }
            .growth-strategy-section .quote-text {
                font-size: 1em;
            }
            .growth-strategy-section .author-photo {
                width: 50px;
                height: 50px;
            }
        }
		
		
		
		 
		
		 /* Sectie container voor de "capabilities" */
        .capabilities-section {
            
             /* Maximale breedte van de inhoud */
            
padding: 0;
            
background: #eae1ca !important;
        }



        /* Individuele feature-kaart binnen de sectie */
        .capabilities-section__card { /* Block__element */
            display: flex;
            align-items: center; /* Centreert items verticaal */
            padding: 40px 0;
            border-bottom: 1px solid #000000; /* Lichtere scheidingslijn voor wit thema */
        }

        /* Laatste kaart heeft geen border-bottom */
        .capabilities-section__card:last-child {
            border-bottom: none;
        }

        /* Wrapper voor de afbeelding binnen de kaart */
        .capabilities-section__image-wrapper { /* Block__element */
            width: 150px; /* Breedte van de afbeelding */
            height: 150px; /* Hoogte van de afbeelding */
            flex-shrink: 0; /* Zorgt ervoor dat de afbeelding niet krimpt */
            margin-right: 40px;
            overflow: hidden; /* Zorgt ervoor dat de inhoud binnen de vierkante vorm blijft */
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #f0f0f0; /* Lichte rand */
            background-color: #f8f8f8; /* Zeer lichte achtergrond voor de image wrapper */
        }

        /* De daadwerkelijke afbeelding binnen de wrapper */
        .capabilities-section__image { /* Block__element */
            width: 100%; /* Afbeelding vult de wrapper */
            height: 100%; /* Afbeelding vult de wrapper */
            object-fit: cover; /* Zorgt ervoor dat de afbeelding de wrapper vult zonder vervorming */
        }

        /* Content gedeelte van de kaart (titel en paragraaf) */
        .capabilities-section__content { /* Block__element */
            flex-grow: 1; /* Neemt de beschikbare ruimte in beslag */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Centreert de tekst verticaal in de beschikbare ruimte */
        }

        /* Titel van de feature */
        .capabilities-section__content-title { /* Block__element-modifier */
            font-size: 35px;
            color: #000000; /* Blauwe kleur voor de titel blijft */
            margin-top: 0;
            text-align: left;
            font-weight: 500;
            margin-bottom: 10px;
        }

        /* Paragraaf tekst van de feature */
        .capabilities-section__content-text { /* Block__element-modifier */
            font-size: 1.1em;
            line-height: 1.6;
            color: #000000; /* Donkergrijs voor de paragraaf tekst */
            margin-bottom: 0;
        }

        /* Wrapper voor de "Lees meer" knop */
        .capabilities-section__button-wrapper { /* Block__element */
            flex-shrink: 0; /* Zorgt dat de wrapper niet krimpt */
            margin-left: 40px; /* Afstand tussen tekst en knop */
            display: flex;
            align-items: center; /* Centreert de knop verticaal */
        }

        /* De "Lees meer" knop zelf */
        .capabilities-section__button { /* Block__element */
            background-color: transparent;
            color: #000000; /* Donkere tekstkleur voor de knop */
            border: 1px solid #000000; /* Lichtere rand voor de knop */
            padding: 12px 25px;
            text-decoration: none;
            font-size: 1em;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
            border-radius: 5px; /* Lichte afronding van de knop */
            white-space: nowrap; /* Zorgt ervoor dat de tekst in de knop niet afbreekt */
        }

        /* Hover staat voor de "Lees meer" knop */
        .capabilities-section__button:hover {
            background-color: #007bff; /* Blauwe achtergrond bij hover */
            color: #ffffff; /* Witte tekst bij hover */
            border-color: #007bff; /* Blauwe rand bij hover */
        }

        /* Responsive aanpassingen */
        @media (max-width: 768px) {
			
			  .text-image-media {
			margin-top: 40px;
			}
	
	.text-image-heading {
    font-size: 17px;
}

.text-image-section {
	padding: 0px;
	margin-bottom: 20px;
}

            .text-image-container {
                flex-direction: column;
            }
            
            .text-image-text,
            .text-image-media {
                flex: none;
                width: 100%;
                padding: 0px 0px 0px 0px !important;
            }
            
			
			
			
            .text-image-media-wrapper {
                padding-top: 56.25%; /* 16:9 aspect ratio op mobiel */
            }
			
			
            .capabilities-section__card {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }

            .capabilities-section__image-wrapper {
                margin-right: 0;
                margin-bottom: 20px;
            }

            .capabilities-section__content {
                width: 100%;
            }

            .capabilities-section__button-wrapper {
                margin-left: 0;
                margin-top: 20px;
                width: 100%;
                justify-content: flex-start;
            }


            .capabilities-section__content-title {
                font-size: 1.5em;
            }

            .capabilities-section__content-text {
                font-size: 1em;
            }
        }

        @media (max-width: 480px) {
  


            .capabilities-section__image-wrapper {
                width: 120px;
                height: 120px;
            }
        }
		
		
		
		
		
		  
		        /* Algemene styling voor onze component */
        .text-image-section {
        padding: 60px 0px;
        }
        
        .text-image-container {
            display: flex;
            width: 100%;
        }
        
        .text-image-text {
            flex: 1;
            padding: 20px 50px 0px 0px;
            background-color: #ffffff;
        }
        
        .text-image-media {
            flex: 1;
            position: relative;
            background-color: #f9f9f9;
            display: flex;
            align-items: stretch;
        }
        
        .text-image-media-wrapper {
            position: relative;
            width: 100%;
            padding-top: 75%; /* 4:3 aspect ratio */
            border-radius: 15px;
            overflow: hidden;
        }
        
        .text-image-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        
        .text-image-slide.active {
            opacity: 1;
        }
        
        .text-image-heading {
            color: #000000;
            margin-top: 0;
            font-size: 21px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .text-image-paragraph {
            line-height: 1.6;
            color: #000000;
            font-size: 16px;
        }
        



		      /* Alle footer-gerelateerde CSS is nu binnen deze sectie */
        .footer-section__ {
            background-color: var(--dark-background);
            padding: 50px 0 20px;
            color: var(--text-color-light);
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-section__ .footer-content {
            display: flex;
            justify-content: space-between;
            max-width: 1230px;
            margin: 0 auto;
            padding: 0 20px;
            flex-wrap: wrap;
        }

        .footer-section__ .footer-left-sections {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            flex-shrink: 1;
            gap: 0;
            flex-basis: calc(100% - 450px - var(--column-gap));
            min-width: 600px;
        }

        .footer-section__ .footer-column-row {
            display: flex;
            flex-wrap: wrap;
            gap: var(--column-gap);
            width: 100%;
            margin-bottom: var(--row-gap);
        }
        .footer-section__ .footer-column-row:last-of-type {
            margin-bottom: 0;
        }


        .footer-section__ .footer-column {
            flex-grow: 1;
            flex-shrink: 1;
            flex-basis: calc((100% / 3) - (2 * var(--column-gap) / 3));
            min-width: 180px;
            margin-bottom: 0;
        }

        .footer-section__ .footer-column h4 {
            color: var(--text-color-light);
            font-size: 16px;
            margin-bottom: 10px;
            font-weight: 800;
            text-align: left;
        }

        .footer-section__ .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

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

        .footer-section__ .footer-column ul li a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section__ .footer-column ul li a:hover {
            color: var(--text-color-light);
        }

        .footer-section__ .contact-info p {
            margin: 0;
            color: #ffffff;
            margin-bottom: 10px;
            text-align: left;
            font-size: 14px;
        }
        .footer-section__ .contact-info a {
            color: var(--text-color-grey);
            text-decoration: none;
        }

        .footer-section__ .footer-column.col-contact .contact-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-section__ .footer-column.col-contact .contact-info p {
            flex-basis: 100%;
            margin-bottom: 0;
            white-space: normal;
        }

        .footer-section__ .social-media ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
            text-align: left;
        }

        .footer-section__ .social-media ul li {
            margin-bottom: 0;
        }
        .footer-section__ .social-media ul li a {
            color: var(--text-color-grey);
            text-decoration: none;
        }

        .footer-section__ .footer-contact-form-wrapper {
            width: 450px;
            flex-shrink: 0;
            flex-grow: 0;
            margin-left: var(--column-gap);
            min-width: 400px;
        }

        .footer-section__ .footer-contact-form h3 {
            color: #ffffff;
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: 600;
            line-height: 1.3;
            margin-top: 0px;
        }

        .footer-section__ .footer-contact-form p {
            color: #ffffff;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .footer-section__ .footer-contact-form form {
            display: flex;
            flex-direction: column;
        }

        .footer-section__ .footer-contact-form input[type="text"],
        .footer-section__ .footer-contact-form input[type="email"],
        .footer-section__ .footer-contact-form textarea {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid #ffffff;
            padding: 10px 0;
            margin-bottom: 25px;
            color: #ffffff;
            font-size: 14px;
            outline: none;
            width: 100%;
        }
        .footer-section__ .footer-contact-form textarea {
            resize: vertical;
            min-height: 60px;
            margin-bottom: 35px;
        }

        .footer-section__ .footer-contact-form input::placeholder,
        .footer-section__ .footer-contact-form textarea::placeholder {
            color: var(--text-color-grey);
        }

        .footer-section__ .footer-contact-form button {
            background-color: var(--purple-button);
            color: var(--text-color-light);
            border: none;
            padding: 12px 20px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            margin-left: auto;
            width: fit-content;
            transition: background-color 0.3s ease;
        }

        .footer-section__ .footer-contact-form button:hover {
            background-color: #8e24aa;
        }

        .footer-section__ .footer-contact-form button .arrow {
            margin-left: 10px;
            width: 20px;
            height: 20px;
            background-color: var(--text-color-light);
            color: var(--purple-button);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
        }

        .footer-section__ .footer-bottom {
            margin-top: 50px;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1230px;
            margin: 0 auto; /* Center the bottom part */
            padding: 50px 20px 20px;
            color: #ffffff;
            font-size: 14px;
            flex-wrap: wrap;
        }

        .footer-section__ .footer-bottom .copyright {
            margin-right: auto;
        }

        .footer-section__ .footer-bottom .internet-nl-image {
            height: 35px;
            width: auto;
            display: block;
        }

        /* Responsive aanpassingen */
        @media (max-width: 1499px) {
            .footer-section__ .footer-content {
                padding: 0 30px;
            }
            .footer-section__ .footer-left-sections {
                min-width: 550px;
            }
            .footer-section__ .footer-contact-form-wrapper {
                width: 400px;
                min-width: 350px;
            }
            .footer-section__ .footer-column {
                flex-basis: calc((100% / 3) - (2 * var(--column-gap) / 3));
                min-width: 150px;
            }
            .footer-section__ .footer-bottom {
                padding: 20px 30px 0;
            }
        }

        /* Contactformulier springt naar beneden en linker secties vullen op */
        @media (max-width: 1079px) {
            .footer-section__ .footer-content {
                flex-direction: column;
                align-items: center;
                padding: 0 20px;
            }
            .footer-section__ .footer-contact-form-wrapper {
                width: 100%;
                max-width: 450px;
                margin-left: 0;
                order: -1;
                margin-bottom: 40px;
                min-width: unset;
            }
            .footer-section__ .footer-left-sections {
                max-width: 100%;
                min-width: auto;
                gap: 0;
            }
            .footer-section__ .footer-column-row {
                justify-content: space-around;
                gap: 20px;
                margin-bottom: 30px;
            }
            .footer-section__ .footer-column-row:last-of-type {
                margin-bottom: 0;
            }
            .footer-section__ .footer-column {
                flex-basis: calc(33.33% - 14px);
                min-width: 100px;
                font-size: 15px;
            }
            .footer-section__ .footer-column h4 {
                font-size: 16px;
            }
            .footer-section__ .footer-bottom {
                max-width: 100%;
                padding: 20px 20px 0;
            }
        }

        /* Media query voor mobiel (twee kolommen per rij) */
        @media (max-width: 768px) {
            .footer-section__ .footer-content {
                padding: 0 15px;
            }
            .footer-section__ .footer-contact-form h3 {
                font-size: 18px;
            }
            .footer-section__ .footer-left-sections {
                align-items: flex-start;
                gap: 0;
                max-width: 100%;
                min-width: auto;
            }
            .footer-section__ .footer-column-row {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 20px;
                justify-content: space-between;
                width: 100%;
                margin-bottom: 30px;
            }
            .footer-section__ .footer-column-row:last-of-type {
                margin-bottom: 0;
            }
            .footer-section__ .footer-column {
                flex-basis: calc(50% - 10px);
                min-width: unset;
                width: auto;
                flex-shrink: 1;
                flex-grow: 1;
                margin-bottom: 0;
            }
            .footer-section__ .footer-column.col-contact {
                order: unset;
            }
            .footer-section__ .footer-column.col-contact .contact-info {
                flex-direction: column;
                gap: 10px;
                justify-content: flex-start;
            }
            .footer-section__ .footer-column.col-contact .contact-info p {
                flex-basis: 100%;
                margin-bottom: 0;
                white-space: normal;
            }
            .footer-section__ .footer-bottom {
                flex-direction: column;
                align-items: center;
                padding: 60px 15px 70px;
            }
            .footer-section__ .footer-bottom .copyright {
                margin-bottom: 25px;
                margin-right: 0;
                width: 100%;
                text-align: center;
            }
            .footer-section__ .footer-bottom .internet-nl-image {
                height: 40px;
                margin-top: 10px;
            }
        }

        /* Nog kleinere mobiele schermen (voor 1 kolom, links uitgelijnd) */
        @media (max-width: 380px) {
            .footer-section__ .footer-left-sections {
                align-items: flex-start; /* Zorgt ervoor dat de hele container met kolommen links uitgelijnd is */
                width: 100%;
                margin: 0; /* Geen auto margin meer, pak de volle breedte en lijn links uit */
                padding: 0 20px; /* Behoud padding voor content */
            }

            .footer-section__ .footer-column-row {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 0;
                width: 100%;
                align-items: flex-start; /* Belangrijk: lijnt de kolommen links uit */
            }
            .footer-section__ .footer-column {
                width: 100%; /* Kolommen nemen volle breedte van de parent */
                max-width: none; /* Verwijder max-width, de 100% breedte is genoeg */
                flex-basis: auto;
                margin-bottom: 0;
            }
            /* Zorg ervoor dat de tekst in alle kolommen links uitgelijnd blijft, zelfs als er een algemene centrering zou zijn */
            .footer-section__ .footer-column h4,
            .footer-section__ .footer-column ul,
            .footer-section__ .footer-column .contact-info,
            .footer-section__ .footer-column .social-media ul,
            .footer-section__ .footer-column .contact-info p { /* Explicit for paragraphs too */
                text-align: left;
            }

            .footer-section__ .footer-column.col-contact {
                order: unset;
            }
            .footer-section__ .footer-column.col-contact .contact-info p:nth-child(3),
            .footer-section__ .footer-column.col-contact .contact-info p:nth-child(4) {
               flex-basis: 100%;
            }

            .footer-section__ .footer-bottom {
                align-items: center; /* Hou deze op center als je de copyright/image gecentreerd wilt hebben */
            }
            .footer-section__ .footer-bottom .copyright {
                text-align: center; /* Centreer de copyright tekst */
            }
        }
		
		
		
		
		
		    /* ==========================================================================
       1. Pricing Plan Section (Block)
       ========================================================================== */
    .pricing-plan-section {
        padding: 100px 0px;
    }

    /* ==========================================================================
       2. Pricing Table (Block)
       ========================================================================== */
    .pricing-table-wrapper {
        overflow-x: auto;
        border-radius: 8px;
        background-color: #FFFFFF;
        border: 1px solid #E0E0E0;
        box-sizing: border-box;
    }

    .pricing-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        margin: 0;
        background-color: #FFFFFF;
        table-layout: fixed;
        min-width: 768px;
    }

    /* Algemene cel styling */
    .pricing-table__header-cell,
    .pricing-table__body-cell {
        padding: 15px 20px;
        border-right: 1px solid #E0E0E0;
        vertical-align: middle;
        box-sizing: border-box;
        word-wrap: break-word;
    }

    /* Verwijder de laatste randen van interne cellen */
    .pricing-table__header-cell:last-child,
    .pricing-table__body-cell:last-child {
        border-right: none;
    }
    .pricing-table__body-row:last-child .pricing-table__body-cell {
        border-bottom: none;
    }

    /* Tabelkop sectie */
    .pricing-table__header {
        background-color: #FFFFFF;
    }

    .pricing-table__header-cell {
        padding: 0;
        border-top: none;
        position: relative;
        text-align: left;
    }

    /* Eerste kolom (feature namen) breedte */
    .pricing-table__header-cell--feature-name,
    .pricing-table__body-cell--feature-name {
        width: 20%;
        min-width: 200px;
        padding: 25px 20px;
        font-weight: 400;
        color: #333333;
        font-size: 0.9em;
        background-color: #FFFFFF;
    }

    /* Gelijke breedte voor de 4 prijsplan-kolommen */
    .pricing-table__header-cell--plan {
        width: calc((100% - 25%) / 4);
        min-width: 140px;
        padding-bottom: 25px;
    }

    /* Afgeronde hoeken voor de bovenste rij */
    .pricing-table__header-cell--plan:last-of-type {
        border-top-right-radius: 8px;
    }

    /* Styling voor de "Pro" plan header met box-shadow als border */
    .pricing-table__header-cell--plan:has(.plan-card__badge--best-value) {
        box-shadow: inset 0 6px 0 0 #0e78e3;
        border-top: none;
    }

    .pricing-table__header-subtitle {
        margin: 0;
        font-size: 0.9em;
        font-weight: 400;
        color: #666666;
        line-height: 1.3;
        padding: 20px;
    }

    /* Styling voor individuele plan blokken in TH */
    .plan-card {
        /* Geen directe styling op plan-card hier, de styling is op de elementen binnenin */
    }

    .plan-card__title {
        font-size: 30px;
        font-weight: 400;
        color: #1356d9;
        margin-top: 35px;
        margin-bottom: 30px;
        padding-left: 20px;
        padding-right: 10px;
    }

    .plan-card__price {
        font-size: 25px;
        font-weight: 400;
        color: #000000;
        margin-bottom: 35px;
        padding-left: 20px;
        padding-right: 10px;
    }

    .plan-card__price-suffix {
        font-size: 16px;
        font-weight: 400;
        color: #898989;
        display: inline-block;
        margin-left: 15px;
    }

    .plan-card__button {
        display: inline-block;
        background-color: #1356d9;
        color: #FFFFFF;
        padding: 13px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 400;
        transition: background-color 0.2s ease;
        margin-top: 15px;
        border: none;
        cursor: pointer;
        box-shadow: none;
        margin-left: 20px;
    }

    .plan-card__button:hover {
        background-color: #0855A3;
    }

    /* Modifier voor de "Meest Gekozen" badge */
    .plan-card__badge--best-value {
        position: absolute;
        top: 60px;
        left: 86%;
        border-radius: 5px;
        transform: translateX(-50%) translateY(-50%);
        background-color: #D9534F;
        color: #FFFFFF;
        font-size: 10px;
        font-weight: 500;
        padding: 5px 10px;
        white-space: nowrap;
        box-shadow: none;
    }

    /* Tabel body sectie */
    .pricing-table__body-row {
        background-color: #FFFFFF;
    }

    /* Aangepaste odd/even styling die werkt bij overflow */
    .pricing-table__body-row:nth-child(even) {
        background-color: #f8f8f8;
    }
    .pricing-table__body-row:nth-child(even) .pricing-table__body-cell {
        background-color: #f8f8f8;
    }

    .pricing-table__body-row:nth-child(odd) {
        background-color: #FFFFFF;
    }
    .pricing-table__body-row:nth-child(odd) .pricing-table__body-cell {
        background-color: #FFFFFF;
    }

    .pricing-table__body-row:hover {
        background-color: #F5F5F5;
    }
    .pricing-table__body-row:hover .pricing-table__body-cell {
        background-color: #F5F5F5;
        transition: background-color 0.15s ease;
    }

    .pricing-table__body-cell {
        text-align: left;
        font-weight: 400;
        color: #000000;
        font-size: 15px;
    }

    /* NIEUW: Styling voor de tekst binnen de body cellen van de tabel */
    .pricing-table__body-text {
        margin: 0;
        padding: 0;
    }

    /* Styling voor Font Awesome vinkjes */
    .feature-icon--check {
        color: #66ae63;
        font-size: 1.2em;
    }

    /* ==========================================================================
       3. Responsive Design (Media Queries)
       ========================================================================== */
    @media (max-width: 768px) {
        .pricing-table-wrapper {
            border-radius: 0;
        }
        .pricing-table {
            border-radius: 0;
        }

        .pricing-table__header-cell,
        .pricing-table__body-cell {
            padding: 8px 15px;
            font-size: 0.85em;
        }

        .pricing-table__header-cell--feature-name,
        .pricing-table__body-cell--feature-name {
            padding-left: 8px;
        }

        .pricing-table__header-subtitle {
             padding-left: 8px;
        }

        .plan-card__title,
        .plan-card__price {
             padding-left: 8px;
        }

        .plan-card__title {
            font-size: 1.1em;
        }
        .plan-card__price {
            font-size: 1.25em;
        }
        .plan-card__price-suffix {
            font-size: 0.7em;
        }
        .plan-card__button {
            padding: 6px 12px;
            font-size: 0.8em;
            margin-left: 8px;
        }
        .plan-card__badge--best-value {
            font-size: 0.7rem;
            padding: 4px 8px;
        }

        /* Responsive aanpassing voor de box-shadow */
        .pricing-table__header-cell--plan:has(.plan-card__badge--best-value) {
            box-shadow: inset 0 3px 0 0 #0A66C2;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }
    }
		
		
		
		
		
		
		
		
				        .top-melding {
            background-color: #d4edda; /* Lichtgroene achtergrond */
            color: #000000; /* Zwarte tekst */
            padding: 20px 0px;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            font-family: Arial, sans-serif;
            font-size: 16px;
            border-bottom: 1px solid #c3e6cb;
        }
        
        .melding-inhoud {
            width: 100%;
            padding: 0 0px 0px 50px; /* Ruimte voor het ronde kruisje */
            text-align: left;
        }
        
        .sluit-melding {
            position: absolute;
            left: 20px;
            cursor: pointer;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #000000;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            border: none;
            padding: 0;
            transition: background 0.2s;
        }
        
        .sluit-melding:hover {
            background: #333333;
        }
        
        /* Optioneel: animatie bij sluiten */
        .top-melding.sluiten {
            opacity: 0;
            max-height: 0;
            padding: 0;
            overflow: hidden;
            transition: opacity 0.3s, max-height 0.3s, padding 0.3s;
        }
		
		
		     /* Begin van gescopeerde CSS voor hosting-plans-swiper-section */
        .hosting-plans-swiper-section {
             /* Max breedte voor de hele sectie op desktop */
            /* Padding wordt nu meer afgestemd op de Swiper-container zelf */
              /* Nodig voor absolute positionering van de pijlen */
             padding: 50px 00px;
			 display: none;
        }

        /* Swiper container styling */
        .hosting-plans-swiper-section .swiper {
            width: 100%;
            height: auto; /* Past zich aan de hoogte van de slides aan */
            padding-bottom: 40px; /* Ruimte voor de paginering (dots) */
            /* padding-left en padding-right toegevoegd voor ruimte aan de zijkanten op mobiel, zodat slides niet tegen de rand plakken */
            /* DEZE IS BELANGRIJK: geeft ruimte aan de zijkanten voor de centeerde slides */
            padding-left: 20px; 
            padding-right: 20px;
            overflow: hidden; /* **Oplossing 1: Verwijder 'visible' om horizontale scrollbar te voorkomen** */
            box-sizing: border-box; /* Zorg ervoor dat padding wordt meegerekend in de breedte */
        }
        
        /* Zorg ervoor dat de wrapper de inhoud correct weergeeft */
        .hosting-plans-swiper-section .swiper-wrapper {
            display: flex;
        }

        /* Swiper Slide styling */
        .hosting-plans-swiper-section .swiper-slide {
            /* width: auto !important; **Oplossing 2: Verwijderd. Laat Swiper de breedte beheren.** */
            flex-shrink: 0; /* Voorkom dat de slide kleiner wordt dan nodig */
            display: flex; /* Blijf flexbox gebruiken binnen de slide */
            justify-content: center;
            align-items: stretch; /* Zorgt dat de cards even hoog zijn */
            height: auto;
            box-sizing: border-box; /* Zorg voor consistente box model */
        }

        /* Hosting Plan Card styling */
        .hosting-plans-swiper-section .hosting-plan-card {
            background-color: #fff;
            border-radius: 4px;
            width: 100%; /* De kaart neemt de volle breedte van de slide in */
            border: 1px solid #dadada;
            max-width: 300px; /* Maximale breedte voor elke individuele kaart */
            min-width: 250px; /* Voeg een minimum breedte toe om te voorkomen dat ze te klein worden */
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-sizing: border-box; /* Belangrijk voor alle elementen */
        }

        /* Header van de hosting plan card */
        .hosting-plans-swiper-section .hosting-plan-card .header {
            padding: 25px 20px;
            border-bottom: 1px solid #eee;
            text-align: left;
            box-sizing: border-box;
        }

        /* Titel in de header */
        .hosting-plans-swiper-section .hosting-plan-card .header h3 {
            color: #0056b3;
            margin: 0;
            font-size: 22px;
        }

        /* Oude prijs in de header */
        .hosting-plans-swiper-section .hosting-plan-card .header .old-price {
            text-decoration: line-through;
            color: #777;
            font-size: 16px;
            margin-top: 5px;
            display: block;
        }

        /* Prijs in de header */
        .hosting-plans-swiper-section .hosting-plan-card .header .price {
            color: #333;
            font-size: 26px;
            font-weight: bold;
            margin-top: 5px;
        }

        /* Per maand tekst */
        .hosting-plans-swiper-section .hosting-plan-card .header .price .per-month {
            font-size: 14px;
            font-weight: normal;
            color: #555;
        }

        /* Opmerking in de header */
        .hosting-plans-swiper-section .hosting-plan-card .header .note {
            font-size: 13px;
            color: #777;
            margin-top: 5px;
        }

        /* Button in de header */
        .hosting-plans-swiper-section .hosting-plan-card .header .button {
            display: block;
            width: 100%;
            margin-top: 20px;
            padding: 12px 25px;
            background-color: #007bff;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            text-align: center;
            transition: background-color 0.3s ease;
            box-sizing: border-box;
        }

        /* Button hover state */
        .hosting-plans-swiper-section .hosting-plan-card .header .button:hover {
            background-color: #0056b3;
        }

        /* Features lijst */
        .hosting-plans-swiper-section .hosting-plan-card .features {
            padding: 0;
            margin: 0;
            list-style: none;
            flex-grow: 1; /* Zorgt ervoor dat de featurelijst de resterende ruimte inneemt */
            display: flex;
            flex-direction: column; /* Zorgt dat li-items verticaal stapelen */
        }

        /* Feature lijst item */
        .hosting-plans-swiper-section .hosting-plan-card .features li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            color: #333;
            font-size: 14px;
            box-sizing: border-box;
        }

        /* Laatste feature item */
        .hosting-plans-swiper-section .hosting-plan-card .features li:last-child {
            border-bottom: none;
        }

        /* Naam van de feature */
        .hosting-plans-swiper-section .hosting-plan-card .features li .feature-name {
            flex-grow: 1;
        }

        /* Waarde van de feature */
        .hosting-plans-swiper-section .hosting-plan-card .features li .feature-value {
            font-weight: normal;
            color: #555;
            text-align: right;
            min-width: 40px;
        }

        /* Check icoon */
        .hosting-plans-swiper-section .hosting-plan-card .features li .icon-check {
            color: #28a745; /* Groen vinkje */
        }

        /* Minus icoon */
        .hosting-plans-swiper-section .hosting-plan-card .features li .icon-minus {
            color: #777; /* Grijs streepje */
        }

        /* Swiper Paginatie (dots) styling aanpassingen */
        .hosting-plans-swiper-section .swiper-pagination {
            position: absolute;
            bottom: 0px !important;
            left: 0;
            width: 100%;
            box-sizing: border-box;
        }
        .hosting-plans-swiper-section .swiper-pagination-bullet {
            background-color: #bbb;
            opacity: 1;
        }

        /* Actieve paginatie bullet */
        .hosting-plans-swiper-section .swiper-pagination-bullet-active {
            background-color: #007bff;
        }

        /* Navigatiepijlen styling */
        .hosting-plans-swiper-section .swiper-button-next,
        .hosting-plans-swiper-section .swiper-button-prev {
            color: #007bff;
            top: 880px;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.15);
            transition: background-color 0.3s ease, color 0.3s ease;
            z-index: 10;
            position: absolute; /* Relatief aan hosting-plans-swiper-section */
            box-sizing: border-box;
        }

        /* Pijl hover states */
        .hosting-plans-swiper-section .swiper-button-next:hover,
        .hosting-plans-swiper-section .swiper-button-prev:hover {
            background-color: #007bff;
            color: #fff;
        }

        /* Pijl iconen */
        .hosting-plans-swiper-section .swiper-button-next::after,
        .hosting-plans-swiper-section .swiper-button-prev::after {
            font-size: 18px;
        }

        /* Positionering van de pijlen aan de rand van de padding van hosting-plans-swiper-section */
        .hosting-plans-swiper-section .swiper-button-prev {
            left: 10px; /* Binnen de padding van de hoofdsectie */
        }
        .hosting-plans-swiper-section .swiper-button-next {
            right: 10px; /* Binnen de padding van de hoofdsectie */
        }

        /* Overrides voor Swiper's ingebouwde disabled-state om buttons altijd te tonen */
        .hosting-plans-swiper-section .swiper-button-next.swiper-button-disabled,
        .hosting-plans-swiper-section .swiper-button-prev.swiper-button-disabled {
            opacity: 0.5; /* Maak ze iets transparanter als ze 'disabled' zijn, maar niet verdwijnen */
            pointer-events: auto; /* Zorg dat ze nog steeds klikbaar zijn */
            cursor: pointer; /* Behoud de cursor */
        }

        /* Responsive aanpassing van padding voor de sectie zelf */
        /* De padding op .hosting-plans-swiper-section wordt minder belangrijk nu .swiper padding heeft */
        @media (max-width: 1200px) {
             .hosting-plans-swiper-section {
                /* padding: 0 50px; -- Deze kan nu verwijderd of aangepast worden */
            }
        }

        @media (max-width: 767px) { /* Tablets en grotere mobielen */
             .hosting-plans-swiper-section {
                /* padding: 0 40px; -- Deze kan nu verwijderd of aangepast worden */
            }
        }

        @media (max-width: 576px) { /* Kleine mobielen */
             .hosting-plans-swiper-section {
                /* padding: 0 30px; -- Deze kan nu verwijderd of aangepast worden */
            }
            /* Pas de padding van de swiper container aan voor zeer kleine schermen */
            .hosting-plans-swiper-section .swiper {
                padding-left: 15px;
                padding-right: 15px;
            }
        }
		
		  @media (max-width: 1200px) {
		.pricing-plan-section {
			display: none;
		  }
		  
		  .hosting-plans-swiper-section {
			display: block;
		  }
		  
		  
		  }
		