/* --- Basis & Reset --- */
:root {
    --primary-color: #6c565f;       /* Warm bruin-paars (branding, headings) */
    --secondary-color: #a8a89d;     /* Zacht grijsgroen/paars (knoppen, belangrijke acties) */
    --background-light: #f5eef1;    /* Lichte warme lavendel (achtergrond) */
    --accent-muted: #c9a0b7;        /* Zachte paarse rozenkleur (sub-accenten, borders) */
    --text-color: #3c2f3b; 
    --white: #FFFFFF;/* Donker taupe met een paarse ondertoon (body tekst) */

    /* Derived colors (voor hover effecten) */
    --primary-hover: #8e6f7b;       /* Warme paarse tint (donkerder primaire kleur) */
    --secondary-hover: #8e6f7b;

    /* Footer kleuren */
    --footer-bg: #5a5560;            /* Donker grijs-paars (achtergrond footer) */
    --footer-text: var(--background-light); /* Licht roze tekst */
    --footer-link: var(--accent-muted); /* Pastelroze linkkleur */
    --footer-link-hover: #ffffff; /* Wit bij hover */

    /* Fonts */
    --font-primary: 'cinzel', sans-serif;
    --font-secondary: 'cinzel', sans-serif;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto; /* NIET hidden! */
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white); /* Witte basis achtergrond */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color); /* Links krijgen de primaire kleur */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    font-family: var(--font-secondary);
    margin-bottom: 0.8em;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-color); /* Koppen krijgen de primaire kleur */
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

.background-light {
    background-color: var(--background-light); /* Gebruik de lichte achtergrondkleur */
}

/* --- Header & Navigatie --- */
.site-header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #eee; /* Subtiele lijn, kan ook var(--background-light) zijn */
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color); /* Logo in primaire kleur */
    text-decoration: none;
}
.logo:hover {
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color); /* Hamburger icoon in primaire kleur */
}


/* --- RYT Logo in Intro Sectie --- */

.certification-logo {
    max-width: 100px; /* Maak het logo klein (pas aan indien nodig, bijv. 80px of 120px) */
    margin: 2em auto 1.5em auto; /* Ruimte boven, centreer horizontaal, ruimte onder */
}

.certification-logo img {
    display: block; /* Voorkomt extra witruimte onder de afbeelding */
    max-width: 100%; /* Zorgt dat de afbeelding schaalt binnen de div */
    height: auto; /* Behoudt de aspect ratio */
}

.main-menu {
    list-style: none;
    display: flex;
}

.main-menu li {
    margin-left: 4em;
}

.main-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    transition: color 0.3s ease;
    position: relative;
    font-family: var(--font-secondary);
}

/* Underline effect in primaire kleur */
.main-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

.main-menu a:hover {
    color: var(--primary-color); /* Tekstkleur hover = primair */
    text-decoration: none;
}

/* --- Hero Sectie --- */
.hero {
    /* Fallback kleur + afbeelding */
    background: var(--primary-color) url('images/Logo_extended.png') no-repeat center center;
    background-size: contain;
    color: var(--white); /* Witte tekst op donkere/afbeelding achtergrond */
    padding: 20px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
    
    .logo-img {
    height: 80px;
    width: auto;
}

@media (max-width: 768px) {
    .logo-img {
        height: 70px;
    }
}

.hero h1 {
    color: var(--white); /* Witte titel */
    font-size: 3rem;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Knoppen --- */
.button {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: var(--font-secondary);
    margin: 5px;
}
.button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

/* Primaire knop: Paarse achtergrond, witte tekst */
.button-primary {
    background-color: var(--primary-color);
    color: var(--white);
}
.button-primary:hover {
    background-color: var(--primary-hover); /* Donkerdere paarse hover */
    color: var(--white);
}

/* Secundaire knop: Perzik achtergrond, paarse tekst */
.button-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}
.button-secondary:hover {
    background-color: var(--primary-hover); /* Donkerdere paarse hover */
    color: var(--white);
}

/* --- Intro & CTA Secties --- */
.intro, .cta {
    text-align: center;
}
.intro p, .cta p {
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     margin-bottom: 1.5em;
}

/* Specifieke stijl voor de strong tag in de intro */
.intro strong {
    color: var(--primary-color); /* Maak RYT extra duidelijk in de primaire kleur */
    font-weight: 700; /* Zorg dat het vet blijft */
}


/* --- Les Overzicht Sectie --- */
.class-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.class-type {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid var(--background-light); /* Subtiele rand in lichte kleur */
}

.class-type img {
    border-radius: 5px;
    margin-bottom: 15px;
    aspect-ratio: 16 / 10;
    object-fit: contain;
}

.class-type h3 {
    margin-bottom: 0.5em;
    /* Kleur is al primair via algemene h3 stijl */
}

.learn-more {
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    /* Kleur is al primair via algemene link stijl */
}
.learn-more:hover {
    text-decoration: underline;
}


/* --- Footer --- */
.site-footer {
    background-color: var(--footer-bg); /* Donkerpaarse achtergrond */
    color: var(--white); /* Lichte tekst */
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    
    min-height: 100px; /* Zorg dat hij altijd zichtbaar is */
    overflow: visible;
    z-index: 10;
    position: relative;
    -webkit-backface-visibility: hidden; /* iOS fix */
    -webkit-transform: translate3d(0, 0, 0); /* iOS rendering fix */
}

.site-footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;

    border-top: 1px solid var(--accent-muted); /* lijn over hele breedte */

    min-height: 100px;
    overflow: visible;
    z-index: 10;
    position: relative;
}
.site-footer .container {
    border-top: 1px solid var(--accent-muted); /* Gedempt paarse lijn */
    padding-top: 30px;
}

.site-footer a {
    color: var(--footer-link); /* Roze link */
}
.site-footer a:hover {
    color: var(--footer-link-hover); /* Witte link hover */
}

/* --- Responsive Design (Mobile-First Aanpak) --- */

/* Stijlen hierboven zijn mobile-first */

/* Tablet en kleine desktops (vanaf 768px) */
@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.2rem; }

    .hero h1 { font-size: 4rem; }

    .class-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Grotere desktops (vanaf 992px) */
@media (min-width: 992px) {
     .section-padding {
        padding: 80px 0;
     }
}


/* Specifiek voor mobiel menu (wanneer scherm kleiner is dan 768px) */
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 10px 0;
        border-top: 1px solid var(--background-light); /* Lichte lijn boven menu */
    }

    .main-menu.active {
        display: flex;
    }

    .main-menu li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid var(--background-light); /* Lichte lijn tussen items */
    }
    .main-menu li:last-child {
        border-bottom: none;
    }

    .main-menu a {
        display: block;
        padding: 15px 20px;
    }
    .main-menu a:hover {
        background-color: var(--background-light); /* Lichte achtergrond bij hover */
        color: var(--primary-color); /* Paarse tekst bij hover */
    }
    .main-menu a::after {
        display: none;
    }

    .hero {
        padding: 60px 0;
        min-height: 40vh;
    }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
}

/* --- Stijlen specifiek voor Yogalessen Pagina --- */

/* Paginatitel sectie bovenaan */
.page-title-section {
    padding: 40px 0; /* Iets minder padding dan standaard secties */
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Subtiele lijn eronder */
}

.page-title-section h1 {
    margin-bottom: 0.3em;
    /* Kleur wordt al overgenomen van algemene h1 stijl */
}

.page-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
}

/* Styling voor de individuele lesbeschrijvingen */
.yoga-classes-section .container {
    max-width: 900px; /* Iets smaller voor betere leesbaarheid van tekstblokken */
}

.yoga-class {
    display: flex; /* Gebruik flexbox voor layout */
    flex-direction: column; /* Standaard (mobiel): afbeelding onder tekst */
    margin-bottom: 60px; /* Ruimte tussen de lesblokken */
    background-color: var(--white); /* Witte achtergrond als je geen afbeeldingen gebruikt */
    border-radius: 8px;
    overflow: hidden; /* Zorgt dat border-radius werkt met afbeeldingen */
    /* Optioneel: lichte schaduw of rand */
     box-shadow: 0 4px 15px rgba(0,0,0,0.07);
     /* border: 1px solid var(--background-light); */
}

.yoga-class-content {
    padding: 30px;
    flex: 1; /* Zorgt dat tekstblok ruimte inneemt */
}

.yoga-class-content h2 {
    margin-top: 0; /* Geen extra marge bovenaan de titel in het blok */
    margin-bottom: 0.6em;
    font-size: 1.8rem; /* Iets kleiner dan de hoofd H2 */
}

.yoga-class-content p {
    margin-bottom: 1em;
}
.yoga-class-content p:last-child {
    margin-bottom: 0; /* Geen extra marge na de laatste paragraaf */
}


.yoga-class-image img {
    width: 100%;
    height: 100%; /* Zorgt dat afbeelding de container vult */
    object-fit: contain; /* Behoudt aspect ratio, vult ruimte */
    display: block;
}


/* Responsive layout voor lesblokken (Desktop) */
@media (min-width: 768px) {
    .yoga-class {
        flex-direction: row; /* Naast elkaar op desktop */
        align-items: stretch; /* Zorg dat beide kolommen even hoog zijn */
    }

    .yoga-class-content {
        flex-basis: 60%; /* Tekst neemt 60% van de breedte */
        padding: 40px; /* Meer padding op desktop */
    }

    .yoga-class-image {
        flex-basis: 40%; /* Afbeelding neemt 40% */
    }

    /* Omgekeerde layout voor afwisseling */
    .yoga-class.reverse-layout {
        flex-direction: row-reverse; /* Draait de volgorde om */
    }
}

/* Aanpassing voor hele grote schermen misschien */
@media (min-width: 1200px) {
     .yoga-class-content {
        padding: 50px;
    }
}

/* Zorg dat CTA sectie styling overeenkomt met homepage */
/* (De bestaande .cta class zou al moeten werken) */

/* --- Stijlen specifiek voor Body Balance Pagina --- */

/* Optioneel: Container om tekstbreedte te beperken voor leesbaarheid */
.text-content-container {
    max-width: 800px; /* Maximale breedte voor de tekstblokken */
    margin-left: auto;
    margin-right: auto;
}

/* Styling voor de video sectie */
.video-section {
    text-align: center; /* Centreer de titel en paragraaf */
}

.video-section h2 {
    margin-bottom: 0.5em;
}

.video-section p {
    margin-bottom: 2em; /* Ruimte boven de video */
}

/* Responsive video wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px; /* Maximale breedte van de video */
    margin: 0 auto; /* Centreer de video wrapper */
    overflow: hidden;
    border-radius: 8px; /* Afgeronde hoeken voor de video */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Subtiele schaduw */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (hoogte / breedte) */
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Verwijder eventuele standaard randen van iframe */
}

/* --- Styling voor Content-Afbeelding Split Layout --- */

.content-image-split {
    display: flex;
    flex-direction: column; /* Standaard (mobiel): afbeelding onder tekst */
    align-items: center; /* Centreer items op mobiel */
    gap: 30px; /* Ruimte tussen tekst en afbeelding op mobiel */
}

.content-image-split .content-part {
    max-width: 700px; /* Beperk tekstbreedte op mobiel voor leesbaarheid */
    text-align: left; /* Standaard tekstuitlijning */
}
.content-image-split .content-part h2 {
    margin-top: 0; /* Geen extra top marge */
}

.content-image-split .image-part img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Afgeronde hoeken */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Subtiele schaduw */
    aspect-ratio: 4 / 3; /* Behoud 4:3 ratio, voorkomt layout shifts */
    object-fit: contain; /* Zorgt dat afbeelding mooi vult en bijsnijdt indien nodig */
}

/* Layout voor grotere schermen (Tablet/Desktop) */
@media (min-width: 768px) {
    .content-image-split {
        flex-direction: row; /* Naast elkaar */
        justify-content: space-between; /* Ruimte ertussen */
        align-items: center; /* Centreer verticaal */
        gap: 50px; /* Grotere ruimte ertussen */
    }

    .content-image-split .content-part {
        flex-basis: 55%; /* Tekst neemt ~55% van de breedte */
        max-width: none; /* Verwijder mobiele breedtebeperking */
    }

    .content-image-split .image-part {
        flex-basis: 40%; /* Afbeelding neemt ~40% */
    }

    /* Optioneel: Layout omkeren voor afwisseling op andere pagina's */
    /*
    .content-image-split.reverse-layout {
        flex-direction: row-reverse;
    }
    */
}

/* --- Stijlen specifiek voor Tarieven Pagina --- */

.pricing-table-section h2 {
    text-align: center;
    margin-bottom: 0.5em;
}
.pricing-table-section > .container > p { /* De paragraaf direct onder de h2 */
    text-align: center;
    margin-bottom: 2.5em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Wrapper voor tabel responsiveness (horizontaal scrollen) */
.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto; /* Maakt horizontaal scrollen mogelijk op kleine schermen */
    -webkit-overflow-scrolling: touch; /* Vloeiender scrollen op iOS */
    margin-bottom: 3em; /* Ruimte onder de tabel */
}

/* Styling van de prijstabel */
.pricing-table {
    width: 600px; /* vaste breedte */
    margin: 20px auto;
    border-collapse: collapse;
    text-align: center;
    border: 1px solid var(--background-light);
    min-width: unset;
}

/* Styling voor de losse les prijs */
.single-class-price {
    text-align: center;
    margin-top: 2em; /* Ruimte boven dit blok */
    padding: 25px;
    background-color: var(--background-light); /* Lichte achtergrond om het te onderscheiden */
    border-radius: 8px;
    max-width: 400px; /* Maak het blok niet te breed */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3em; /* Ruimte eronder */
}

.single-class-price h3 {
    margin-top: 0;
    margin-bottom: 0.3em;
    color: var(--primary-color);
}

.single-class-price .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.2em;
}
.single-class-price p:last-child {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Styling voor contact info voor andere termijnen */
.custom-terms-contact {
    text-align: center;
    margin-top: 2em;
    padding: 20px;
    border-top: 1px dashed var(--accent-muted); /* Gestippelde lijn erboven */
     border-bottom: 1px dashed var(--accent-muted); /* Gestippelde lijn eronder */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.custom-terms-contact h3 {
     margin-top: 0;
    margin-bottom: 0.5em;
    color: var(--primary-color);
}
.custom-terms-contact p {
    margin-bottom: 0.5em;
    line-height: 1.5;
}
.custom-terms-contact strong {
    color: var(--primary-color);
}
.custom-terms-contact a {
    color: var(--primary-color);
    word-break: break-word; /* Zorgt dat lange links/nummers afbreken */
}
.custom-terms-contact a:hover {
    text-decoration: underline;
}

/* --- Stijlen specifiek voor Rooster Pagina --- */

/* Styling voor de introductie sectie */
.schedule-intro .text-content-container {
    background-color: var(--background-light); /* Lichte achtergrond om info te highlighten */
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color); /* Accentlijn aan de zijkant */
}

.schedule-intro h2 {
    margin-top: 0;
    color: var(--primary-color);
}

.schedule-intro p {
    margin-bottom: 1em;
    line-height: 1.7;
}
.schedule-intro p:last-child {
    margin-bottom: 0;
}
.schedule-intro a {
    color: var(--primary-color);
    font-weight: bold; /* Maak links extra duidelijk */
}
.schedule-intro a:hover {
    text-decoration: underline;
}
.schedule-intro strong {
    color: var(--primary-color);
}

/* Container voor de dag-kaarten (Grid Layout) */
.schedule-container {
    display: grid;
    /* Maakt kolommen: Zoveel mogelijk kolommen met min. 280px breedte, max. 1fr (gelijke verdeling resterende ruimte) */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px; /* Ruimte tussen de kaarten */
    margin-top: 2em; /* Ruimte onder de introductie tekst */
}

/* Styling van de individuele dag-kaarten */
.schedule-day-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    border: 1px solid var(--background-light);
    /* Zorgt dat kaarten niet te hoog worden als er weinig lessen zijn (optioneel) */
    align-self: start;
}

.schedule-day-card h3 {
    margin-top: 0;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--primary-color); /* Lijn onder de dag */
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Lijst met tijden en lessen */
.schedule-time-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-time-list li {
    display: flex;
    justify-content: space-between; /* Tijd links, naam rechts */
    align-items: center; /* Verticaal centreren */
    padding: 12px 0;
    border-bottom: 1px dashed var(--accent-muted); /* Gestippelde lijn tussen lessen */
    line-height: 1.4;
}

.schedule-time-list li:last-child {
    border-bottom: none; /* Geen lijn na de laatste les */
}

.schedule-time-list .time {
    font-weight: 600; /* Maak tijd iets dikker */
    color: var(--primary-color);
    flex-shrink: 0; /* Voorkom dat tijd krimpt op smalle schermen */
    margin-right: 15px; /* Ruimte tussen tijd en naam */
    font-size: 0.95rem;
}

.schedule-time-list .class-name {
    text-align: right; /* Lijn naam rechts uit */
    font-size: 0.95rem;
}

/* --- Trainin Widget Sectie --- */

/* Container van de widget */
.trainin-schedule {
    width: 100%;               /* vult de beschikbare breedte */
    max-width: 1200px;         /* niet breder dan 1200px op grote schermen */
    margin: 40px auto;         /* centreert de widget en geeft verticale ruimte */
    padding: 0;                /* geen extra binnenruimte, iframe vult container */
    border-radius: 14px;       /* afgeronde hoeken voor hele widget */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* subtiel zwevend effect */
    background: #ffffff;       /* witte achtergrond */
}

/* Iframe zelf */
.trainin-schedule iframe {
    width: 100%;               /* vult de container */
    height: 850px;             /* standaard hoogte voor desktop */
    border: none;
    border-radius: 14px;       /* matcht container */
    display: block;            /* voorkomt onverwachte inline-ruimte */
    opacity: 0;                /* voor fade-in effect */
    transition: opacity 0.4s ease;
}

/* Iframe fade-in wanneer geladen */
.trainin-schedule iframe.loaded {
    opacity: 1;
}

/* Mobiel & tablet */
@media (max-width: 1024px) {
    .trainin-schedule iframe {
        height: 1000px;        /* iets hogere iframe voor tablet */
    }
}

@media (max-width: 768px) {
    .trainin-schedule iframe {
        height: 1200px;        /* mobiele schermen krijgen hogere iframe */
    }
}

/* Eventueel: titel binnen de widget sectie */
.trainin-schedule h2 {
    text-align: center;
    margin-bottom: 1.5em;
}


/* --- Speciale Knop Stijl voor Hero Sectie --- */
.button-hero {
    background-color: transparent; /* Geen achtergrond */
    border: 2px solid var(--background-light); /* Rand in Salie Groen */
    color: var(--background-light); /* Tekst in Salie Groen */
    /* Behoud padding, border-radius etc. van .button class */
}

.button-hero:hover {
    background-color: var(--secondary-color); /* Achtergrond wordt Salie Groen op hover */
    color: var(--white); /* Tekst wordt wit op hover */
    border-color: var(--secondary-color); /* Zorg dat rand ook de hover kleur heeft */
    /* Behoud transform effect van .button:hover */
}

.home-afbeelding {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Tabel styling */
.pricing-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
    text-align: center;
    border: 1px solid var(--background-light);
}

/* Cel-opmaak */
.pricing-table th,
.pricing-table td {
    padding: 10px 8px;
    font-size: 0.9rem;
    border: 1px solid var(--background-light);
    vertical-align: middle;
    line-height: 1.1;
}

.pricing-table thead {
    background-color: var(--background-light);
}

.pricing-table tbody tr:nth-child(even) {
    background-color: #f9f6f4;
}

.pricing-table tbody tr:hover {
    background-color: #fdf2e9;
}

@media (max-width: 480px) {
    .table-responsive-wrapper {
        overflow-x: auto;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 2px 4px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .pricing-table td:nth-child(1),
    .pricing-table th:nth-child(1) {
        max-width: 140px;
    }

    .pricing-table td:nth-child(2),
    .pricing-table th:nth-child(2) {
        max-width: 60px;
    }

    .pricing-table td:nth-child(3),
    .pricing-table th:nth-child(3) {
        max-width: 100px;
    }
}
.faq {
    max-width: 800px;
    margin: auto;
    margin-bottom: 80px;
}
.faq details {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
    margin-bottom: 16px;
}
.faq summary {
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
}
.faq p {
    margin: 10px 0;
    line-height: 1.6;
}
.faq ol {
    margin-left: 20px;
}
    
    
    
    