html {
    scroll-behavior: smooth;
  }
  

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #000000;
    margin: 0;
    padding: 0;
    background-color: #F9F9F9;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #3F5B1D;
    position: relative;  /* Nodig voor de absolute positionering van de hamburgerknop */
}

header .logo {
    height: 50px; /* Adjust size as needed */
    margin-right: 15px; /* Space between logo and text */
}

header #name {
    font-size: 24px; 
    font-weight: bold;
    text-align: left;
    margin: 0;
    color: #FFFFFF;
    font-family: 'Rockwell', sans-serif;
}

header #name a {
    color: #FFFFFF; 
    text-decoration: none; 
}

header nav {
    margin-left: auto; /* Push navigation to the right */
    display: flex;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px; /* Space between menu items */
    margin: 0;
    padding: 0;
}

header nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px; /* Zorg voor voldoende ruimte rond de tekst */
    border-radius: 5px; /* Ronde hoeken voor een knopachtig effect */
    position: relative; /* Voor de actieve link styling */
}

/* Actieve link styling */
header nav ul li a.active {
    background-color: #E0E000; /* Kleur voor actieve link achtergrond */
    color: #3F5B1D; /* Tekstkleur van actieve link */
}

/* Specifieke stijl voor de "Contact" link */
header nav ul li a[href="contact.html"] {
    border: 2px solid #FFFFFF; /* Witte omlijning */
    background-color: transparent; /* Transparante achtergrond */
}

/* Hover-effect voor de "Contact" knop */
header nav ul li a[href="contact.html"]:hover {
    color: #E0E000;
    border: 2px solid #E0E000; /* Witte omlijning */
}

/* Optioneel: Focusstaat voor toegankelijkheid */
header nav ul li a[href="contact.html"]:focus {
    outline: 2px solid #E0E000; /* Gele outline bij focus */
    background-color: #FFFFFF; /* Witte achtergrond bij focus */
    color: #000000; /* Zwarte tekst bij focus */
}

header nav ul li a:hover {
    text-decoration: underline; /* Optional: underline on hover */
    color: #E0E000;
}

header nav ul li a:focus { /* Dit is voor toegangelijkheid*/
    outline: 2px solid #E0E000;
}

/* Hamburger menu styling */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-bar {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 3px 0;
    border-radius: 3px;
}

.menu-toggle.active + #nav,
#nav.active {
    display: flex;
}

main {
    padding: 20px;
}

h2{
    color: #3F5B1D;
}

h3{
    color: #3F5B1D;
}

/* footer */
footer {
    background-color: #3F5B1D;
    color: #FFFFFF;
    padding: 20px;
    text-align: left;
    font-family: Verdana, Geneva, Tahoma, sans-serif; /* Consistent met de rest van de site */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Zorgt ervoor dat de kolommen onder elkaar vallen op kleinere schermen */
    padding: 20px 0;
}

.footer-column {
    flex: 1;
    min-width: 200px; /* Minimum breedte voor responsiviteit */
    margin: 10px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
    color: #E0E000; /* Kleur voor kopjes in footer, voor contrast */
    font-family: 'Rockwell', serif; /* Consistent met de kopjes op andere pagina's */
}

.footer-column p, .footer-column ul {
    margin: 5px 0;
}

.footer-column a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline; /* Hover effect voor links */
    color: #E0E000; /* Kleur voor hover-effect consistent met navigatie-links */
}

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

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    color: #FFFFFF; /* Links in de lijst consistent met andere links */
}

.social-link {
    display: inline-flex;
    align-items: center; /* Verticaal centreren */
    text-decoration: none;
    color: #000; /* Pas dit aan naar de gewenste kleur */
    font-size: 16px;
}

.social-icon {
    width: 55px; /* Pas de grootte van het Instagram-logo aan indien nodig */
    height: auto;
    margin-right: 10px; /* Ruimte tussen logo en tekst */
}

.social-username {
    vertical-align: middle;
    display: inline-block;
}

.footer-separator {
    border-top: 1px solid #FFFFFF; /* Dunne witte lijn voor scheiding */
    margin: 8px 0; /* Ruimte boven en onder de scheidingslijn */
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    margin-left: 25px;
    margin-right: 25px;
    position: relative;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    gap: 20px; /* Ruimte tussen de teksten */
    align-items: center; /* Zorgt dat het streepje en de tekst gecentreerd zijn */
    margin-bottom: 10px; /* Ruimte tussen links en copyright */
}

.footer-divider {
    background-color: #E0E000; /* Kleur van het verticale streepje */
    width: 2px; /* Breedte van het streepje */
    height: 1em; /* Hoogte van het streepje aangepast naar een vaste hoogte */
    display: inline-block; /* Zorgt ervoor dat het streepje zichtbaar is en inline blijft */
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #E0E000; /* Kleur van de links in de footer-bottom */
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline; /* Hover-effect voor links in de footer-bottom */
}

.footer-copyright {
    margin-top: 10px; /* Ruimte boven copyright tekst */
}

.footer-heading {
    position: relative;
    display: flex;
    align-items: center;
}


.oersterk-certification {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.oersterk-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.oersterk-text {
    font-size: 18px;
    color: #3F5B1D;
    font-family: 'Verdana', sans-serif;
    font-weight: bold;
}

/* index.html */
.hero-section {
    position: relative;
}

.hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 600px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
}

.hero-text h1 {
    font-size: 48px;
    margin: 0;
    font-weight: 700;
    text-align: center;
    padding-top: 5px;
}

#about {
    margin-top: 5%;
    margin-bottom: 5%;
}

#about p {
    font-size: 16px;
    line-height: 1.6;
    color: #4F4F4F;
    margin-bottom: 20px;
}

#about h2{
    color: #3F5B1D;
    font-family: 'Rockwell', serif;
    font-size: 32px;
    font-weight: 700;
}

#home {
    color: #FFFFFF;
}

/* Waarom Thuis sectie */
#thuis {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #e0dcdc; /* Subtiele achtergrondkleur voor contrast */
    border-radius: 8px; /* Ronding van de hoeken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Zachte schaduw voor diepte */
}

#thuis h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #3F5B1D;
    margin-bottom: 20px;
    font-family: 'Rockwell', serif;
}

.benefits {
    display: flex;
    justify-content: center; /* Center de grid-container */
    flex-wrap: wrap; /* Zorg ervoor dat items netjes worden omgebogen */
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px; /* Ruimte tussen de grid-items */
    max-width: 1200px; /* Max breedte voor de grid-container */
    width: 100%;
}

.grid-item {
    background: linear-gradient(180deg, #3F5B1D, #67942F);
    position: relative; /* Zorg ervoor dat we absolute positionering kunnen gebruiken voor de achtergrondafbeelding */
    padding: 20px;
    border-radius: 8px;
    color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden; /* Zorg ervoor dat de achtergrond niet buiten de grenzen van het item komt */
}

.grid-item h3 {
    font-size: 24px;
    color: #E0E000;
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Rockwell', serif;
    text-align: center;
    position: relative; /* Zorg ervoor dat de tekst boven de achtergrond wordt weergegeven */
    z-index: 1; /* Zorg ervoor dat de tekst boven de achtergrond staat */
}

.grid-item ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    position: relative; /* Zorg ervoor dat de lijst boven de achtergrond wordt weergegeven */
    z-index: 1; /* Zorg ervoor dat de lijst boven de achtergrond staat */
}

.grid-item ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.grid-item ul li strong {
    font-weight: 700; /* Vetgedrukte tekst voor belangrijke punten */
}

.grid-item-1b, .grid-item-2a {
    background-color: transparent; /* Zorg ervoor dat de achtergrondkleur niet zichtbaar is */
    padding: 0; /* Verwijder extra padding als dat nodig is */
}

.grid-item-1b,.grid-item-2a {
    display: flex;
    align-items: center; /* Verticaal centreren */
    justify-content: center; /* Horizontaal centreren */
    padding: 20px; /* Optioneel: padding voor esthetiek */
    border-radius: 8px;
    overflow: hidden; /* Zorg ervoor dat niets buiten de grenzen van het item komt */
}

.grid-item-1b img {
    max-width: 100%; /* Zorg ervoor dat de afbeelding niet breder is dan het container */
    height: auto; /* Zorg ervoor dat de hoogte proportioneel blijft */
    border-radius: 8px; /* Optioneel: ronde hoeken voor de afbeelding */
}

.benefit-image {
    width: 70%;
    height: auto;
    border-radius: 8px; /* Zorg ervoor dat de afbeeldingen ook ronde hoeken hebben */
}

.more-info-btn {
    display: block;
    width: fit-content;
    padding: 10px 20px;
    background-color: #E0E000; /* Gele achtergrondkleur */
    color: #3F5B1D; /* Zwarte tekstkleur */
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin: 0 auto; /* Center de knop */
    transition: background-color 0.3s;
    position: relative; /* Zorg ervoor dat de tekst boven de achtergrond wordt weergegeven */
    z-index: 1; /* Zorg ervoor dat de tekst boven de achtergrond staat */
}

.more-info-btn:hover {
    background-color: #C0C000; /* Lichtere geel bij hover */
    position: relative; /* Zorg ervoor dat de tekst boven de achtergrond wordt weergegeven */
    z-index: 1; /* Zorg ervoor dat de tekst boven de achtergrond staat */
}

/* Diensten die worden aangeboden */
.services {
    display: flex;
    gap: 20px; /* Ruimte tussen de items */
    justify-content: space-between; /* Ruimte tussen de services */
    color: #FFFFFF;
    flex-wrap: wrap; /* Zorgt ervoor dat items op de volgende regel gaan als ze niet passen */
}

.service {
    flex: 1;
    min-width: 300px; /* Minimum breedte voor responsiviteit */
    background: linear-gradient(180deg, #3F5B1D, #67942F); /* Kleurverloop toevoegen */
    padding: 20px;
    border-radius: 8px;
    margin: 5px;
    text-align: left;
    color: #FFFFFF; /* Tekstkleur */
    display: flex;
    flex-direction: column; /* Zorgt ervoor dat de button onderaan komt */
    justify-content: space-between; /* Zorgt ervoor dat de button naar de onderkant gaat */
    text-decoration: none; /* Verwijdert standaard link styling */
    transition: transform 0.3s, box-shadow 0.3s; /* Voor animatie bij hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Schaduw voor een 3D-effect */
    position: relative; /* Om childern te positioneren als er nodig is */
}

.bottom-section {
    margin-top: auto; /* Duwt de sectie naar de onderkant */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    border-top: 5px solid #FFFFFF; /* Witte bovenlijn */
    width: 80%; /* Lijn lengte */
    font-size: 18px; /* Tekengrootte voor de prijs */
    font-weight: bold; /* Vetgedrukt voor nadruk */
    color: #E0E000; /* Kleur van de prijs */
    text-align: center; /* Uitlijnen in het midden */
    padding-top: 10px; /* Ruimte tussen de lijn en de tekst */
    margin: 15px 0; /* Ruimte boven en onder de prijs */
}

.service:hover {
    transform: translateY(-5px); /* Beweeg omhoog bij hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Diepere schaduw bij hover */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service h2{
    text-align: center;
    color: #E0E000;
    margin-top: 0;
    font-family: 'Rockwell', serif; /* Specifiek lettertype */
}

.service p {
    margin-bottom: 10px;
}

.service a {
    color: inherit; /* Erft de kleur van de parent, zodat de tekst niet als link lijkt */
    text-decoration: none; /* Geen onderstreping van de tekst */
}

.meerInfo {
    margin-top: auto; /* Zorgt ervoor dat de knop naar de onderkant wordt geduwd */
    margin-bottom: 5px;
    text-align: center;
    background-color: #19B391; /* Accentkleur voor de knop 19B391*/
    color: #FFFFFF; /* Tekstkleur van de knop */
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.meerInfo:hover {
    text-decoration: underline; /* Optionele hover effect */
}

/* yinyoga.html */
/* Introductie */
.intro-section {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    background: linear-gradient(180deg, #F5F5F5, #E0E0E0);
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.intro-text {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #3F5B1D;
}

.intro-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #3F5B1D;
    font-family: 'Rockwell', serif;
    margin-bottom: 20px;
    position: relative;
}

.intro-text h2::after {
    content: '';
    width: 40%;
    height: 5px;
    background-color: #E0E000;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-bottom: 20px;
    color: #3d3d3d;
}

#y-quote {
    font-size: 20px;
    font-style: italic;
    color: #3F5B1D;
    padding-left: 15px;
    background-color: #F0F0F0;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Voordelen van Yin Yoga */
.y-benefits {
    padding: 40px;
    margin-top: 40px;
    background: linear-gradient(180deg, #E0E0E0, #C0C0C0);
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.y-benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.y-benefit {
    flex: 1;
    background: linear-gradient(0deg, #3F5B1D, #4f7225);
    border: 2px solid #3F5B1D;
    border-radius: 10px;
    padding: 20px;
    max-width: 28%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.y-benefits h2 {
    font-size: 36px;
    font-weight: 700;
    color: #3F5B1D;
    margin-bottom: 40px;
    font-family: 'Rockwell', serif;
    text-align: center;
    position: relative;
}

.y-benefit h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-family: 'Rockwell', serif;
}

.y-benefit p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #FFF;
    line-height: 1.6;
    margin: 0;
}

.y-benefit::before {
    content: "";
    display: block;
    width: 40%;
    height: 4px;
    background-color: #E0E000;
    margin-bottom: 20px;
    border-radius: 2px;
}

/* Hoe ziet een les eruit */
/* Algemene stijl voor de les sectie */
.lesson-section {
    padding: 30px;
    background-color: #F9F9F9;
    border-radius: 10px;
    margin: 20px 0;
}

.lesson-title {
    font-size: 36px;
    color: #3F5B1D; /* Donkergroen */
    font-family: 'Rockwell', serif;
    text-align: center;
    margin-bottom: 20px;
}

.lesson-intro {
    font-size: 16px;
    color: #333;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    margin-bottom: 30px;
}

.lesson-steps {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Twee kolommen */
    gap: 20px;
}

.lesson-step {
    background: linear-gradient(180deg, #E0E0E0, #C0C0C0);
    padding: 20px;
    border-left: 5px solid #E0E000; /* Gele linkerbalk */
    border-radius: 8px;
}

.step-title {
    font-size: 22px;
    color: #3F5B1D;
    margin-bottom: 10px;
}

.lesson-step p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Waarom Kiezen Voor Levenskwaliteitcoach */
.why-choose {
    padding: 40px 20px;
    margin: 80px auto;
    max-width: 1600px; 
    background-color: #FFF;
}

.why-choose h2 {
    font-size: 48px;
    font-weight: 700;
    color: #3F5B1D;
    margin-bottom: 20px;
    font-family: 'Rockwell', serif;
    text-align: center;
}

.why-choose-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}

.intro-image {
    width: 100%;
    height: 300px; /* Pas de hoogte aan zoals gewenst */
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.why-choose-text {
    flex: 1;
    padding: 40px;
    background-image: 
        url('yin-yoga.jpg'), /* Achtergrondafbeelding bovenop */
        linear-gradient(to bottom, 
            rgba(218, 198, 172, 1), 
            rgba(128, 120, 102, 1)); /* Kleurverloop onder de afbeelding */
    background-size: auto; /* Zorg ervoor dat de afbeelding de volledige ruimte vult */
    background-position: top; /* Centreert de afbeelding */
    background-repeat: no-repeat; /* Zorg ervoor dat de afbeelding niet herhaald wordt */
    background-blend-mode: normal; /* Zorg ervoor dat de afbeelding de achtergrond niet mengt */
    color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why-choose-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

#y-p {
    font-size: 16px;
    line-height: 1.8;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #434242;
}

.why-choose-list li {
    flex: 1 1 calc(20% - 20px);
    font-size: 16px;
    line-height: 1.8;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #434242;
    background: rgba(255, 255, 255, 0.75); /* Licht transparant */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.why-choose-list li strong {
    font-weight: bold;
    font-size: 24px;
    display: inline-block;
    color: #3F5B1D;
    margin-bottom: 10px;
}

/* Prijs sectie */
#y-pricing-table {
    text-align: center;
}

#y-pricing-table h2 {
    font-size: 42px;
    color: #3F5B1D;
    margin-bottom: 50px;
    font-family: 'Rockwell', serif;
}

.y-pricing-options {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 40px;
}

.y-pricing-card {
    background: linear-gradient(135deg, #E0E0E0, #C0C0C0); /* Lichtgrijze achtergrond */
    color: #3F5B1D; /* Donkergroene tekstkleur */
    border-radius: 20px;
    padding: 40px 20px;
    width: 29%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Voor positionering van het pseudo-element */
    overflow: hidden; /* Verberg alles buiten de randen van het pakket */
}

.y-single-class {
    width: 40%; /* Zorgt ervoor dat de losse les-kaart 100% van de breedte beslaat */
    margin-top: 20px;
    padding: 40px 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background: linear-gradient(135deg, #F0F0F0, #D0D0D0);
}
.y-single-class .y-extra-info {
    font-size: 24px;
    color: #3F5B1D;
    font-weight: bold;
    padding-top: 40px;
}

.y-single-class .y-combi-info {
    font-size: 16px;
    color: #3F5B1D;
    margin-top: 10px;
    font-style: italic;
}

.y-single-class .y-btn {
    margin-top: 20px;
}

.y-featured {
    border: 3px solid #3F5B1D;
    transform: scale(1.05);
}

.y-pricing-card.y-featured::before {
    content: "Meest gekozen!";
    color: white;
    background-color: #3F5B1D; /* Groene achtergrond voor de banner */
    font-weight: bold;
    padding: 12px 40px;
    font-size: 14px;
    text-transform: uppercase;
    position: absolute;
    top: 35px;
    right: -55px; /* Plaats de banner buiten de rechterbovenhoek */
    transform: rotate(45deg); /* Draai de banner */
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.y-pricing-card h3.y-package-name {
    font-size: 40px;
    font-family: 'Rockwell', serif;
    margin-bottom: 20px;
}

.y-pricing-card .y-price {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Verdana', sans-serif;
}

.y-pricing-card .y-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    color: #000000;
}

.y-pricing-card .y-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.y-pricing-card .y-features li:before {
    content: "\2713"; /* Vinkje */
    color: #3F5B1D; /* Groene kleur voor het vinkje */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    line-height: 1.2;
}

.y-divider {
    border: none;
    border-top: 3px solid #3F5B1D; /* Groene scheidingslijn */
    margin: 20px 0;
}

.y-pricing-card .y-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3F5B1D; /* Donkergroene knop */
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.y-pricing-card .y-btn:hover {
    background-color: #67942F; /* Lichtere groene tint bij hover */
}

/* Leefstijl html */
/* Introductie sectie */
#l-intro-leefstijl {
    position: relative; /* Maakt het mogelijk om de tekst relatief aan deze sectie te positioneren */
    margin-bottom: 40px; /* Zorgt voor een scheiding tussen secties */
    border-radius: 8px; /* Maakt hoeken van de sectie afgerond */
    overflow: hidden; /* Verhindert dat elementen buiten de sectie vallen */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Voegt een subtiele schaduw toe voor diepte */
}

.l-hero-container {
    position: relative; /* Bepaalt de basispositie voor alle binnenliggende elementen */
    height: 500px; /* Definieert de hoogte van de container */
}

.l-hero-image img {
    width: 100%; /* Past de afbeelding aan naar de breedte van de container */
    height: 50vh; /* Maakt de afbeelding even hoog als de container */
    object-fit: cover; /* Zorgt ervoor dat de afbeelding het hele element bedekt zonder te vervormen */
    border-radius: 8px; /* Maakt de hoeken van de afbeelding afgerond */
}

.l-hero-text {
    position: absolute; /* Zorgt ervoor dat de tekst bovenop de afbeelding zweeft */
    top: 100px; /* Positioneert de tekst 20px vanaf de bovenkant van de container */
    left: 100px; /* Positioneert de tekst 20px vanaf de linkerkant van de container */
    background: rgba(255, 255, 255, 0.8); /* Geeft de tekst een semi-transparante achtergrond voor leesbaarheid */
    padding: 20px; /* Voegt ruimte toe rond de tekst voor visueel comfort */
    border-radius: 8px; /* Maakt de hoeken van de tekstcontainer afgerond */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Voegt een subtiele schaduw toe voor diepte */
}

.l-hero-text h1 {
    font-size: 32px; /* Groot formaat voor de hoofdtitel */
    font-weight: 700; /* Maakt de titel dikgedrukt voor nadruk */
    color: #3F5B1D; /* Maakt gebruik van de merk- of huisstijlkleuren */
    margin-bottom: 10px; /* Zorgt voor een kleine afstand tussen de titel en de tekst */
}

.l-hero-text p {
    font-size: 16px; /* Instelt de tekstgrootte voor de paragraaf */
    color: #3F5B1D; /* Maakt gebruik van de merk- of huisstijlkleuren */
    line-height: 1.6; /* Bepaalt de regelhoogte voor leesbaarheid */
    margin-bottom: 0; /* Verwijdert extra afstand onderaan de paragraaf */
}

/* Wat is Leefstijlcoaching */
#l-wat-leefstijl {
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px 20px; /* Voegt ruimte toe rondom de sectie */
    background-color: #f9f9f9; /* Achtergrondkleur voor de sectie */
    font-family: 'Verdana', sans-serif; /* Font voor de hele sectie */
}

#l-wat-leefstijl h2 {
    font-size: 28px;
    font-weight: 700;
    color: #3F5B1D; /* Donkergroene kleur voor de kop */
    margin-bottom: 20px;
    font-family: 'Rockwell', serif;
}

#l-wat-leefstijl h3 {
    font-size: 24px;
    color: #3F5B1D;
    margin-top: 30px;
    font-family: 'Rockwell', serif;
}

#l-wat-leefstijl p {
    font-size: 16px;
    line-height: 1.6;
    color: #4F4F4F;
    margin-bottom: 20px;
    font-family: 'Verdana', sans-serif;
}

/* Oersterk Visie Sectie */
#oersterk-visie {
    padding: 32px;
    background-color: #f7f7f7;
    border-radius: 8px;
    margin-bottom: 32px;
}

#oersterk-visie h2 {
    font-size: 32px;
    border-bottom: 2px solid #3F5B1D; /* Geel voor de onderlijn van de titels */
    padding-bottom: 8px;
    margin-bottom: 32px;
}

#oersterk-visie p {
    color: #333; /* Donkergrijs voor leesbaarheid */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

#oersterk-visie .oersterk-pijlers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

#oersterk-visie .oersterk-pijler {
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 8px solid #3F5B1D; /* Groen voor secties */
}

#oersterk-visie .oersterk-pijler h3 {
    font-size: 24px;
    color: #3F5B1D; 
    margin-bottom: 12px;
}

#oersterk-li {
    list-style-type: none;
    position: relative;
    padding-left: 30px; /* Zorgt voor ruimte voor het vinkje */
    color: #333; /* Donkergrijs voor leesbaarheid */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

#oersterk-li::before {
    content: '✔';
    font-size: 12px; /* Pas de grootte aan indien nodig */
    color: #fff;
    background-color: #3F5B1D; /* Groen voor de cirkel */
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Oersterk Coach Sectie */
#oersterk-coach {
    background-color: #FFF; /* Lichtgrijze achtergrond voor contrast */
    padding: 40px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.oersterk-coach-container {
    display: flex;
    align-items: center;
    gap: 20px; /* Ruimte tussen afbeelding en tekst */
}

.oersterk-coach-image {
    flex: 1;
    max-width: 400px; /* Maximale breedte van de afbeelding */
}

.oersterk-coach-image img {
    width: 100%;
    height: auto; /* Zorg ervoor dat de afbeelding zijn aspect ratio behoudt */
    border-radius: 10px; /* Maakt de afbeelding rond */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Zelfde schaduw als de sectie voor consistentie */
    border: 5px solid #3F5B1D; /* Groen voor secties */
}

.oersterk-coach-text {
    flex: 2;
}

#oersterk-coach h2 {
    color: #3F5B1D; /* Groen */
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

#oersterk-coach p {
    color: #333; /* Donkergrijs voor leesbaarheid */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Oersterk Klachten Sectie */
#oersterk-klachten {
    padding: 40px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 8px;
}

#oersterk-klachten h2 {
    color: #3F5B1D; /* Groen */
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

#oersterk-klachten p {
    color: #333; /* Donkergrijs voor leesbaarheid */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center; /* Centraal uitlijnen voor een nette presentatie */
}

#oersterk-klachten ul {
    list-style: none; /* Verwijder de standaard bullet points */
    padding: 0; /* Verwijder de standaard padding */
    margin: 0; /* Verwijder de standaard margin */
    display: grid; /* Gebruik grid om kolommen te maken */
    grid-template-columns: repeat(2, 1fr); /* Twee kolommen */
    gap: 20px; /* Ruimte tussen de kolommen */
}

#oersterk-klachten li {
    list-style-type: none;
    position: relative;
    padding-left: 30px; /* Zorgt voor ruimte voor het vinkje */
    color: #FFF; /* Donkergrijs voor leesbaarheid */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(180deg, #3F5B1D, #67942F); /* Groen achtergrond voor elk lijstitem */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px; /* Ronde hoeken voor een moderne uitstraling */
}

/* Genezing en verantwoordelijkheid */
#genezing-verantwoordelijkheid {
    background: linear-gradient(180deg, #3F5B1D, #67942F); 
    color: #FFFFFF; /* Witte tekst voor contrast */
    padding: 50px 25px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

#genezing-verantwoordelijkheid::before {
    content: "";
    position: absolute;
    top: 0;
    right: -10%;
    transform: translateY(-50%);
    background-image: url('logo-small.png'); 
    background-size: cover; /* Pas de grootte van het logo aan */
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.3; /* Maakt het logo vaag */
    width: 60%; /* Breedte van het logo */
    height: 100%; /* Hoogte van het logo */
    transform: translateX(10%);
    pointer-events: none; /* Zorgt ervoor dat het logo geen invloed heeft op interacties */
    z-index: 1; /* Plaatst het logo achter de tekst */
}

#genezing-verantwoordelijkheid h2, 
#genezing-verantwoordelijkheid p {
    position: relative;
    z-index: 2; /* Plaatst de tekst voor het logo */
    padding-right: 35%;
    line-height: 1.6;
}

#genezing-verantwoordelijkheid h2 {
    color: #E0E000;
}

#genezing-verantwoordelijkheid p {
    color: #FFFFFF; 
}

/* Leefstijl Begeleiding */
#l-leefstijl-begeleiding {
    margin-top: 40px;
    padding: 40px 20px;
    background: linear-gradient(180deg, #F5F5F5, #E0E0E0);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#l-leefstijl-begeleiding h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

#l-leefstijl-begeleiding p {
    font-size: 16px;
    line-height: 1.6;
    color: #4F4F4F;
    margin-bottom: 20px;
    text-align: center;
}

.l-begeleiding-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    justify-items: center;
    align-items: start;
}

.l-feature {
    text-align: center;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 400px;
    width: 100%;
}

.l-feature h3 {
    font-size: 20px;
    font-weight: 700;
    color: #3F5B1D;
    margin-top: 15px;
}

.l-feature p {
    font-size: 16px;
    color: #4F4F4F;
    margin-top: 10px;
}

.l-feature-image {
    border-radius: 50%;
    width: 1500px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Waarom Kiezen Voor Levenskwaliteitcoach? */
#l-waarom-mij {
    margin-top: 40px;
    padding: 40px 20px;
    background: linear-gradient(180deg, #F5F5F5, #E0E0E0);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#l-waarom-mij h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3F5B1D;
}

.l-flex-container {
    display: flex;
    gap: 20px;
}

.l-tekst-blokken {
    flex: 1;
}

.l-why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.l-why-choose-list li {
    margin-bottom: 20px; /* Voegt ruimte toe tussen de items */
    padding: 15px; /* Zorgt voor inwaartse ruimte rond de tekst */
    background: linear-gradient(135deg, #3F5B1D, #67942F); /* Voegt een subtiele achtergrond overloop toe */
    color: #FFFFFF; /* Tekstkleur past zich aan voor contrast */
    border-radius: 8px; /* Maakt hoeken afgerond voor een zachtere uitstraling */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Voegt schaduw toe voor diepte */
    position: relative;
}

.l-why-choose-list strong {
    font-weight: bold; /* Zorgt dat het sterke gedeelte extra opvalt */
    font-size: 16px; /* Maakt de kopjes groter en opvallender */
    color: #E0E000; /* Geeft de kopjes een kenmerkende gele kleur */
}

.l-why-choose-list li p {
    text-indent: 20px; /* Laat de alinea's inspringen voor een nette opmaak */
    line-height: 1.6; /* Zorgt voor goede leesbaarheid door regelhoogte aan te passen */
    margin-top: 8px; /* Zorgt voor een kleine afstand tussen kop en tekst */
}


.l-afbeelding-blok {
    flex: 0 0 auto; /* Zorgt ervoor dat de afbeelding niet uitrekt */
    display: flex;
    align-items: stretch;
}

.l-afbeelding {
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-height: 100%; /* Beperkt de hoogte */
}

/* Prijzen */
/* Prijs sectie */
#l-pricing-table {
    text-align: center;
}

#l-pricing-table h2 {
    font-size: 42px;
    color: #3F5B1D;
    margin-bottom: 50px;
    font-family: 'Rockwell', serif;
}

.l-pricing-options {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.l-pricing-card {
    background: linear-gradient(135deg, #E0E0E0, #C0C0C0); /* Lichtgrijze achtergrond */
    color: #3F5B1D;
    border-radius: 20px;
    padding: 40px 20px;
    width: 29%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative; /* Voor positionering van het pseudo-element */
    overflow: hidden; /* Verberg alles buiten de randen van het pakket */
}

.l-featured {
    border: 3px solid #3F5B1D;
    transform: scale(1.05);
}

.l-pricing-card.l-featured::before {
    content: "Meest gekozen!";
    color: white;
    background-color: #3F5B1D; /* Groene achtergrond voor de banner */
    font-weight: bold;
    padding: 12px 40px;
    font-size: 14px;
    text-transform: uppercase;
    position: absolute;
    top: 35px;
    right: -55px; /* Plaats de banner buiten de rechterbovenhoek */
    transform: rotate(45deg); /* Draai de banner */
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.l-pricing-card h3.l-package-name {
    font-size: 40px;
    font-family: 'Rockwell', serif;
    margin-bottom: 20px;
}

.l-pricing-card .l-price {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Verdana', sans-serif;
}

.l-pricing-card .l-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    color: #000000;
}

.l-pricing-card .l-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.l-pricing-card .l-features li:before {
    content: "\2713"; /* Vinkje */
    color: #3F5B1D; /* Groene kleur voor het vinkje */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    line-height: 1.2;
}

.l-divider {
    border: none;
    border-top: 3px solid #3F5B1D; 
    margin: 20px 0;
}

.l-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3F5B1D; 
    color: #FFFF;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.l-btn:hover {
    background-color: #67942F; /* Lichtere groene tint bij hover */
}

/* Contact */
#l-contact {
    background: linear-gradient(180deg, #E0E0E0, #C0C0C0);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    max-width: 99%;
    margin: 50px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#l-contact h2 {
    font-size: 36px;
    color: #3F5B1D;
    margin-bottom: 20px;
    font-family: 'Rockwell', serif;
}

#l-contact p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Verdana', sans-serif;
}

#l-contact ul {
    list-style-type: none;
    padding: 0;
    font-size: 16px;
    color: #3F5B1D;
    font-family: 'Verdana', sans-serif;
}

#l-contact ul li {
    margin-bottom: 10px;
}

.l-combi-info {
        font-size: 16px;
        color: #3F5B1D;
        margin-top: 10px;
        font-style: italic;
}

/* Specifieke styling voor contact links */
.link{
    text-decoration: underline;
    color: #000;
}

.contact-link {
    color: #333;
    text-decoration: underline;
    position: relative;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.contact-link:hover {
    background-color: #E0E000;
}

/* Iconen toevoegen voor bellen en e-mail */
.phone-link::before,
.email-link::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    background-size: cover;
}

.phone-link::before {
    background-image: url('phone-icon.png'); /* Voeg een telefoon-icoon toe */
}

.email-link::before {
    background-image: url('mail-icon.png'); /* Voeg een e-mail-icoon toe */
}

/* Privacy verklaring */
#privacy {
    color: #3F5B1D;
    font-family: 'Rockwell', sans-serif;
    font-size: xx-large;
}

/* Contact pagina */
.c-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

#c-contact-info {
    background: #E0E0E0;
    padding: 40px 20px;
}

#c-contact-info p {
    margin: 10px 0;
}

#c-contact-info ul {
    list-style: none;
    padding: 0;
}

#c-contact-info li {
    margin-bottom: 10px;
}

#c-contact-form {
    background: #F5F5F5;
    padding: 40px 20px;
    margin-top: 30px;
}

.c-form-group {
    margin-bottom: 20px;
}

.c-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #3F5B1D;
    font-family: 'Rockwell', serif;
}

.c-form-group input,
.c-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #CCC;
    border-radius: 5px;
    font-family: 'Verdana', sans-serif;
}

.c-form-group input:focus,
.c-form-group textarea:focus {
    outline: none;
    border-color: #67942F;
}

.c-contact-form .c-btn {
    background-color: #3F5B1D;
    color: #FFFFFF;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.y-contact-form .c-btn:hover {
    background-color: #67942F;
}

.c-contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.c-contact-text {
    flex: 2;
}

.c-contact-photo {
    flex: 1;
    text-align: center;
}

.c-contact-photo img {
    max-width: 400px; /* Pas de grootte van de afbeelding aan */
    border-radius: 60%; /* Maakt de afbeelding rond */
    border: 3px solid #3F5B1D; 
}

.c-thank-you-message {
    margin-top: 30px;
    padding: 20px;
    background-color: #E0E0E0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.c-thank-you-message h3 {
    color: #3F5B1D;
    font-size: 28px;
    font-family: 'Rockwell', serif;
}

.c-thank-you-message p {
    color: #67942F;
    font-size: 16px;
    font-family: 'Verdana', sans-serif;
}

.c-opening-hours {
    width: 60%;
    border-collapse: collapse;
    margin-top: 15px;
}

.c-opening-hours td {
    padding: 8px 15px;
    border: 1px solid rgba(114, 114, 114, 0.3); /* 50% opacity */
    text-align: left;
}

.c-opening-hours td:first-child {
    font-weight: bold;
}

#strong {
    color: #3F5B1D;
}

/* Zorgt ervoor dat de website responsive is bij grootere/ kleinere beeldschermen */
/* Media Queries voor kleinere schermen */
@media (max-width: 1200px) {
    .benefit-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }

    .grid-item-1a, .grid-item-2a {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }
    .intro-section {
        flex-direction: column;
        text-align: center;
    }

    .intro-image {
        margin: 0;
        max-width: 100%;
    }

    .intro-text {
        flex: 1;
    }

    .y-benefits-container {
        flex-direction: column;
        align-items: center;
    }

    .y-benefit {
        width: 90%; /* Zorg ervoor dat de y-benefit elementen 90% breed zijn op kleinere schermen */
        max-width: none; /* Verwijder de max-width beperking */
    }

    .why-choose h2 {
        font-size: 36px;
    }

    .why-choose-content {
        flex-direction: column;
        gap: 0;
    }

    .why-choose-text {
        padding: 20px;
        background-position: top; /* Zorg ervoor dat de afbeelding goed wordt weergegeven op kleinere schermen */
        margin-bottom: 20px;
    }

    .why-choose-list {
        flex-direction: column;
    }

    .why-choose-list li {
        flex: 1 1 100%; /* Laat elk item de volledige breedte innemen op mobiele schermen */
    }
    .l-feature-image {
        width: 100px;
        height: 100px;
    }
}

@media screen and (min-width: 768px) {
    .l-feature-image {
        width: 200px;
        height: 200px;
    }
}

@media screen and (min-width: 1200px) {
    .l-begeleiding-features {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 1200px){
    .why-choose-content {
        flex-direction: column; /* Stapelt de afbeelding en tekst verticaal op */
    }

    .intro-image {
        margin-bottom: 20px; /* Ruimte tussen de afbeelding en de tekst */
        padding-bottom: 75%; /* Zorgt ervoor dat de afbeelding zijn verhouding behoudt */
    }

    .why-choose-text {
        padding: 0;
    }

    .why-choose-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Twee kolommen voor de lijstitems */
        gap: 20px; /* Ruimte tussen de grid-items */
    }
}

@media (max-width: 600px) {
    header nav {
        display: none; /* Verberg navigatie door default */
        position: absolute;
        top: 60px; /* Zorg ervoor dat de nav onder de header verschijnt */
        right: 0;
        background-color: #3F5B1D;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        padding: 20px;
        width: 100vw; /* Standaard breedte van het menu */
        max-width: 300px;
        z-index: 10; /* Zorg ervoor dat het menu boven andere elementen staat */
    }

    header nav ul {
        flex-direction: column; /* Zet de links onder elkaar */
        margin: 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active + #nav {
        display: flex; /* Toon het menu als de toggle actief is */
    }
    header nav ul li a.active {
        background-color: #E0E000; /* Kleur voor actieve link achtergrond */
        color: #3F5B1D; /* Tekstkleur van actieve link */
    }
    .l-pricing-options {
        flex-direction: column;
        align-items: center; /* Zorg ervoor dat de kaarten gecentreerd zijn */
    }

    .l-pricing-card {
        width: 90%; /* Maak de kaarten 90% breed op kleinere schermen */
        max-width: none; /* Verwijder de maximale breedte op kleinere schermen */
        margin: 10px 0; /* Voeg wat ruimte toe tussen de kaarten */
    }
    .why-choose-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 1000px){
    #genezing-verantwoordelijkheid::before {
        background-size: contain; /* Zorgt ervoor dat de hele afbeelding zichtbaar is */
        width: 100%; /* Zorgt ervoor dat de afbeelding niet te groot is */
        height: 100%;
    }
}

@media screen and (max-width: 800px) {
    .oersterk-coach-container {
        flex-direction: column;
    }
    
    .oersterk-coach-image {
        width: 100%;
    }
    
    .oersterk-coach-text {
        text-align: justify; /* Maakt de tekst uitgelijnd */
    }
}

@media screen and (max-width: 600px) {
    .c-form-group input,
    .c-form-group textarea {
        font-size: 16px;
    }

    .c-container {
        padding: 10px;
    }

    .c-contact-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .c-contact-photo {
        margin-top: 20px;
    }

    .y-pricing-options {
        flex-direction: column;
        align-items: center;
    }

    .y-pricing-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }

    .footer-column {
        margin-bottom: 15px;
    }

    .social-link, .oersterk-certification {
        justify-content: center;
    }

    .oersterk-logo {
        width: 35px;
        height: 35px;
    }

    .oersterk-text {
        font-size: 16px;
    }

    .why-choose-text {
        padding: 20px;
        background-size: cover;
        background-position: center top;
    }

    .why-choose-list {
        grid-template-columns: 1fr; /* Eén kolom voor de lijstitems op zeer kleine schermen */
    }

    .l-afbeelding-blok {
        display: none;
    }
    
    .l-flex-container {
        flex-direction: column; /* Zorg ervoor dat tekstblokken in één kolom verschijnen als de afbeelding is verborgen */
    }

    #l-waarom-mij h2 {
        text-align: center;
    }

    .l-hero-container {
        height: auto; /* Pas de hoogte van de container aan op basis van de inhoud */
    }

    .l-hero-image img {
        opacity: 50%;
    }
    
    .l-hero-text {
        position: static; /* Maak de positie van de tekst statisch zodat deze in de normale documentstroom blijft */
        background: rgba(255, 255, 255, 0.9);; /* Verwijder de achtergrond van de tekst */
        padding: 10px; /* Verminder de padding voor kleinere schermen */
        box-shadow: none; /* Verwijder de schaduw op kleinere schermen */
        margin: 20px; /* Centreer de tekst */
        max-width: 100%; /* Beperk de breedte van de tekstcontainer */
    }
    
    .l-hero-text h1 {
        font-size: 24px; /* Verminder de tekstgrootte van de titel op kleine schermen */
        text-align: center; /* Centreer de titeltekst */
    }
    
    .l-hero-text p {
        font-size: 14px; /* Verminder de tekstgrootte van de paragraaf op kleine schermen */
        text-align: center; /* Centreer de paragraaftekst */
    }
    .oersterk-coach-container {
        flex-direction: column; /* Afbeelding en tekst onder elkaar */
        align-items: center; /* Lijnt de items in het midden uit */
    }

    .oersterk-coach-image {
        margin-bottom: 20px; /* Voegt ruimte toe onder de afbeelding */
        max-width: 100%; /* Zorgt ervoor dat de afbeelding de volledige breedte van de container gebruikt */
    }

    #oersterk-coach h2 {
        font-size: 24px; /* Kleinere font size voor de titel op kleinere schermen */
        text-align: center; /* Centreert de titel */
    }

    #oersterk-coach p {
        font-size: 14px; /* Kleinere font size voor de tekst op kleinere schermen */
        text-align: center; /* Centreert de tekst */
    }
    #genezing-verantwoordelijkheid::before {
        background-size: contain; /* Verkleint de afbeelding op kleinere schermen */
        width: 100%;
    }

    #genezing-verantwoordelijkheid h2, 
    #genezing-verantwoordelijkheid p {
        padding-right: 10%; /* Vermindert de padding op kleinere schermen */
    }

}

@media screen and (max-width: 450px){
    #l-pricing-table h2{
        font-size: 32px;
    }
    .l-pricing-card h3.l-package-name {
        font-size: 28px;
    }
    .grid-item-2a {
        display: none;
    }
    .grid-item-1b {
        display: none;
    }
    .hero-text h1{
        font-size: 32px;
    }
    .hero-text{
        padding: 7px;
    }
    .intro-text h2 {
        font-size: 32px;
    }
    #y-quote{
        font-size: 18px;
    }
    .y-benefits h2{
        font-size: 32px;
    }
    .y-benefit h3{
        font-size: 18px;
    }
    .why-choose h2{
        font-size: 32px;
    }
    .why-choose-list li strong{
        font-size: 18px;
    }
    .why-choose{
        padding: 0;
        margin: 0;
    }
    #l-waarom-mij h2{
        font-size: 30px;
    }
    #y-pricing-table h2{
        font-size: 32px;
        margin-bottom: 5px;
    }
    .y-pricing-card h3.y-package-name {
        font-size: 28px;
    }
    .y-pricing-card{
        max-width: 90%;
    }
    #l-intro-leefstijl{
        margin-bottom: 5px;
    }
    .l-hero-text h1{
        font-size: 32px;
    }
    #l-wat-leefstijl h2{
        font-size: 32px;
    }
    #oersterk-klachten h2{
        font-size: 28px;
    }
    #oersterk-klachten ul{
        grid-template-columns: repeat(1, 1fr);
    }
    #oersterk-klachten li {
        padding: 20px;
    }
    #genezing-verantwoordelijkheid::before{
        transform: translateX(5%);
    }
    #l-pricing-table h2{
        margin-bottom: 10px;
    }
    .c-contact-photo img{
        max-width: 75%;
    }
}