       :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 */
        }
		

   
		
		
		
		        .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: #f4f4f4 !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;
        }
        
		

























    .footer-section__ {
        background-color: #ffffff;
        padding: 50px 0 20px;
        color: #f4f4f4;
        font-size: 14px;
        line-height: 1.6;
        /* border-top: 1px solid #e8e8e8; */
    }

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

    .footer-section__ .footer-column-row {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        width: 100%;
        justify-content: space-between;
    }

    .footer-section__ .footer-column {
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: calc(25% - (3 * 30px / 4));
        min-width: 180px;
    }

    .footer-section__ .footer-column h4 {
        color: #2b2b2b;
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 600;
        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: #000000;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 14px;
    }

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

    .footer-column .footer-sub-section {
        margin-bottom: 35px;
    }

    .footer-column .contact-info p,
    .footer-column .social-media ul li a {
        color: #000000;
    }

    .footer-section__ .footer-bottom {
        margin-top: 50px;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1130px;
        margin: 0 auto;
        padding: 35px 20px 20px;
        color: #ffffff;
        font-size: 14px;
        flex-wrap: wrap;
        border-top: 1px solid #c7c7c7;
    }

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

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

    /* Responsieve aanpassingen */
    @media (min-width: 768px) {
        .footer-section__ .footer-column-row {
            justify-content: space-between;
            gap: 30px;
        }
        .footer-section__ .footer-column {
            flex-basis: calc(25% - (3 * 30px / 4));
            min-width: 180px;
        }
        .footer-accordeon-header {
            display: none;
        }
        .footer-accordeon-content {
            display: block !important;
        }
    }

    @media (max-width: 865px) {
        .footer-section__ .footer-column-row {
            gap: 15px;
            justify-content: center;
        }
        .footer-section__ .footer-column {
            flex-basis: calc(25% - 15px);
            min-width: unset;
            font-size: 13px;
        }
        .footer-section__ .footer-column h4 {
            font-size: 14px;
        }
    }

    @media (max-width: 767.98px) {
        .footer-section__ .footer-column-row {
            flex-direction: column;
            gap: 0;
        }
        .footer-section__ .footer-column {
            width: 100%;
            border-bottom: 1px solid rgb(0 0 0 / 10%);
            min-width: unset;
            flex-basis: auto;
        }
        .footer-section__ .footer-column:last-child {
            border-bottom: none;
        }

        .footer-accordeon-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 20px 0;
            background: transparent;
            border: none;
            color: #060505;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
        }

        .footer-accordeon-header .arrow {
            font-size: 15px;
            transition: transform 0.3s ease;
        }

        .footer-accordeon-header.active .arrow {
            transform: rotate(180deg);
        }

        .footer-accordeon-content {
            display: none;
            overflow: hidden;
            padding-bottom: 10px;
        }

        .footer-accordeon-content h4 {
            font-size: 14px;
            font-weight: 600;
            margin-top: 0;
        }

        .footer-accordeon-content .footer-sub-section {
            margin-bottom: 15px;
        }
        
        .footer-section__ .footer-bottom {
            flex-direction: column;
            align-items: center;
            padding: 40px 15px 70px;
        }

        .footer-section__ .footer-bottom .copyright {
            margin-bottom: 25px;
            margin-right: 0;
            width: 100%;
            text-align: center;
        }
    }
	
	
	
		
		    /* ==========================================================================
       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;
		  }
		  
		  
		  }
		
		
		
		        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 25px;
            border-radius: 5px;
            color: white;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        
        .notification.show {
            opacity: 1;
        }
        
        .success {
            background-color: #4CAF50;
        }
        
        .error {
            background-color: #F44336;
        }
		
		
		
	
	
  /* Video container styles */
   .video-container {
   position: relative;
   display: inline-block;
   cursor: pointer;
   width: 100%;
   }
   .video-container .styled-image {
   display: block;
   width: 100%;
   height: auto;
   }
   /* Play button styles */
   .play-button {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 60px;
   height: 60px;
   background: rgba(255, 0, 0, 0.8);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
   transition: all 0.3s ease;
   }
   .play-button:hover {
   transform: translate(-50%, -50%) scale(1.1);
   background: rgba(255, 0, 0, 1);
   }
   .play-button::after {
   content: "";
   display: block;
   width: 0;
   height: 0;
   border-top: 15px solid transparent;
   border-bottom: 15px solid transparent;
   border-left: 25px solid white;
   margin-left: 5px;
   }
   /* Popup styles */
   .video-popup {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.9);
   z-index: 9999;
   align-items: center;
   justify-content: center;
   }
   .video-popup-content {
   position: relative;
   width: 90%;
   max-width: 900px;
   }
   .close-popup {
   position: absolute;
   top: -40px;
   right: 0;
   color: white;
   font-size: 30px;
   cursor: pointer;
   }
   .video-popup-iframe {
   width: 100%;
   height: 0;
   padding-bottom: 56.25%; /* 16:9 aspect ratio */
   position: relative;
   }
   .video-popup-iframe iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: none;
   }
   



        .chat-section .component-container {
            background-color: #ffefe6;
            width: 100%;
            padding: 20px 0px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .chat-section .chat-wrapper {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 2rem;
            padding: 0 2rem;
            box-sizing: border-box;
        }

        .chat-section .chat-info {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-grow: 1;
        }

        .chat-section .icon-container {
            position: relative;
            width: 70px;
            height: 50px;
            flex-shrink: 0;
        }

        .chat-section .chat-icon {
            position: absolute;
            width: 540px;
            top: -41px;
        }

        .chat-section .chat-text {
            margin: 0;
            font-size: 16px;
            color: #000000;
            line-height: 1.5;
            margin-left: 35px;
        }

        .chat-section .chat-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            background-color: #007bff;
            color: white;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
            flex-shrink: 0;
        }

        .chat-section .chat-button:hover {
            background-color: #0056b3;
        }

        .chat-section .chat-button-icon svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
        }
        
        /* Media query voor mobiele weergave */
        @media (max-width: 768px) {
            .chat-section .chat-wrapper {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .chat-section .chat-info {
                flex-direction: column;
                gap: 0.5rem; /* kleinere afstand tussen icoon en tekst */
            }
            
            .chat-section .icon-container {
                /* Dit zorgt ervoor dat de container ook gecentreerd wordt op mobiel */
                margin: 0 auto;
                width: 50px;
            }

            .chat-section .chat-icon {
                /* Dit is de aanpassing om het icoon te centreren */
                left: 50%;
                top: -58px; /* Optioneel: reset de top-waarde */
                transform: translateX(-50%); /* Verplaatst het icoon 50% van zijn eigen breedte naar links */
            }
        }