/* Globale Stijlen en Variabelen */
:root {
    --font-family-inter: 'Inter', sans-serif;
    --color-dark: #171717;
    --color-text-dark: #17140F;
    --color-gray-text: #6A6A6A;
    --color-orange-primary: #FB8500;
    --color-blue-dark: #112F45;
    --color-blue-light: #4B9CB9;
    --color-white: #FFFFFF;
    --color-background-light: #F6F3F0;
    --color-divider: #DDDDDD;
    --color-card-border: #E3DEDA;
    --max-width: 1200px;
    --padding-sides: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-inter);
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    zoom: 0.9; /* Voor Chrome, Edge en Safari */
    -moz-transform: scale(0.9); /* Voor Firefox */
    -moz-transform-origin: top center; /* Zorgt dat Firefox van bovenaf schaalt */
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased; /* Maakt het font extra strak op Mac/iOS */

}

a {
    text-decoration: none;
    color: var(--color-dark);
}

.section-title-large {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 50px;
}

.section-title-large strong,
.main-title strong {
    font-weight: 900; /* Extra dikke letters voor de nadruk, zoals in Figma */
}

.section-title-small {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--color-dark);
    text-align: center;
}

.cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 11px 20px;
    background-color: var(--color-orange-primary);
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: background-color 0.3s;
    text-align: center;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e67a00; /* Een donkerdere tint oranje */
}

/* ----------------------------------- */
/* PARTNERS SECTION */
/* ----------------------------------- */

.partners-section {
    /* Ruimte boven/onder de hele rij */
    padding: 50px 0; 
    background-color: white; 
}

.partners-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center; /* Verticale centrering */
    
    max-width: 1200px; /* Centrale container */
    margin: 0 auto; 
    
    /* Zorg voor padding links en rechts van de container */
    padding: 0 var(--padding-sides); 
}

/* Stijl voor de tekst "Partners" (het eerste item in de rij) */
.partners-title {
    font-size: 18px; 
    font-weight: 600;
    color: var(--color-dark);
    line-height: 30px;
    /* CRUCIAAL: 20px ruimte RECHTS van de titel, geen andere marges */
    margin: 0 20px 0 0; 
    flex-shrink: 0; 
}

/* Stijl voor alle logo's */
.partners-logo-wrapper img {
    height: 30px; /* Bepaal de hoogte van de logo's */
    width: auto;
    object-fit: contain; 
    flex-shrink: 0; 
    
    /* STANDAARD: 20px marge LINKS voor elk logo */
    margin: 0 0 0 20px; 
    opacity: 0.8; 
    transition: opacity 0.3s;
}

/* De Fix voor de gelijke afstand: */
/* Het eerste logo na de titel mag GEEN marge links hebben, 
   omdat de titel al 20px marge rechts heeft ingesteld. */
.partners-logo-wrapper img:first-of-type { 
    margin-left: 0; 
}

/* Optioneel: Stijl de laatste afbeelding */
.partners-logo-wrapper img:last-child {
    margin-right: 0; 
}

.partners-logo-wrapper img:hover {
    opacity: 1;
}

/* ----------------------------------- */
/* HERO SECTION STYLES */
/* ----------------------------------- */

.hero-section {
    max-width: 100%;
    min-height: 600px;
    padding: 0px var(--padding-sides) 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    /* Gebruik de box-shadow van de Rectangle 5660 als een inset schaduw op de body of een element: */
    /* background: #FFFFFF; box-shadow: inset 0px -279px 95px -200px #F6F3F0; */
    box-shadow: inset 0px -100px 95px -70px var(--color-background-light); 
}

/* Navigatie Balk */
.navigation {
    width: 90%; 
    max-width: 730px; 
    margin: 30px auto 60px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #F2F0E9;
    box-shadow: 0px 8px 11.4px 3px rgba(24, 23, 23, 0.07);
    border-radius: 44px;
}

.logo-hm img {
    height: 34px;
    width: auto;
}

.nav-container a {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-dark);
    margin-left: 20px;
    padding: 5px;
    transition: color 0.2s;
}

.nav-container a:hover {
    color: var(--color-orange-primary);
}

/* Voor een actieve link onderstreping (simulatie van Figma's 'Research' onderlijn) */
.nav-container a[href="#research"] {
    position: relative;
    color: var(--color-text-dark); /* De Figma-code toont niet de oranje tekst, dus we houden de donkere kleur */
}
/* De oranje lijn is lastig met pure CSS/HTML zonder JS. We laten deze weg om de code zuiver te houden, of simuleren hem met een dikkere border/box-shadow op de link zelf. */

.main-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 58px;
    max-width: 860px;
    margin: 40px auto 20px;
    color: var(--color-dark);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--color-text-dark);
}

/* ----------------------------------- */
/* PRESENTATION IMPROVEMENT SECTION */
/* ----------------------------------- */

.improving-presentation-section {
    background-color: var(--color-background-light);
    padding: 50px var(--padding-sides) 100px;
    position: relative;
    z-index: 1; /* Zodat de achtergrondvorm goed uitkomt */
}

.improving-presentation-section .section-title-large {
    padding-top: 50px; /* Ruimte na de hero-sectie */
    margin-bottom: 80px;
}

.improving-presentation-section .content-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
}

.improvement-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 350px;
    padding-top: 150px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    background-color: var(--color-orange-primary);
}

.step-item.active .step-number {
    background-color: var(--color-orange-primary);
    color: var(--color-white);
}

.step-number.secondary-number {
    background-color: #FBE3C3; /* Lichtere oranje */
    color: var(--color-orange-primary);
}

.step-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
}

.image-content {
    position: relative;
    flex-grow: 1;
    max-width: 784px;
    text-align: center;
}

.laptop-image {
    width: 100%;
    height: auto;
    max-width: 1200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Dit centreert ze exact in het midden */
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D9D9D9;
}

.dot.active {
    background-color: var(--color-dark);
}

/* ----------------------------------- */
/* ADVANTAGES SECTION */
/* ----------------------------------- */

.advantages-section {
    padding: 100px var(--padding-sides);
    text-align: center;
}

.advantages-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.advantage-card {
    border: 2px solid var(--color-card-border);
    border-radius: 16px;
    padding: 30px;
    width: 325px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-white);
}

.card-icon {
    width: 120px; /* Gebaseerd op de afmetingen van de assets */
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #535353;
    margin-bottom: 5px;
}

.card-description {
    font-size: 16px;
    font-weight: 500;
    color: #535353;
    text-align: center;
}


/* ----------------------------------- */
/* ----------------------------------- */
/* WHY HM SECTION (VIDEO) */
/* ----------------------------------- */
.why-hm-section {
    padding: 100px var(--padding-sides);
    text-align: center;
    background-color: var(--color-background-light); /* Een lichte achtergrond zoals in Figma */
}

/* ----------------------------------- */
/* CUSTOM VIDEO PLAYER STYLING */
/* ----------------------------------- */

/* 1. De hoofdscontainer: Bepaalt de grootte en look van de speler */
.video-container.custom-video-player {
    /* VERKLEIND: Dit maakt de video kleiner (max 800px breed) */
    max-width: 1000px; 
    
    margin: 0 auto;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0px 14px 14.6px rgba(0, 0, 0, 0.25);
    cursor: pointer; 
}

/* 2. De wrapper: Bepaalt de 16:9 verhouding */
.video-placeholder {
    width: 100%;
    position: relative; /* CRUCIAAL voor absolute positionering van kindelementen */
    padding-top: 56.25%; /* 16:9 aspect ratio (Hoogte is 56.25% van de breedte) */
    background: black;
}

/* 3. De Thumbnail (zichtbaar vóór het klikken) */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* Ligt onder de knop */
    opacity: 1; 
    transition: opacity 0.3s ease;
}

/* 4. De Custom Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--color-white, white); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2; /* Ligt boven de thumbnail */
    transition: transform 0.3s ease;
}

/* 5. Styling voor het Play Icoon */
.play-button i {
    font-size: 30px;
    color: var(--color-orange-primary, #FB8500);
    /* Driehoek iets naar rechts verschuiven voor optische centrering */
    transform: translateX(4px); 
}

/* Hover-effect op de knop */
.video-container.custom-video-player:hover .play-button {
    transform: translate(-50%, -50%) scale(1.05);
}

/* 6. De HTML5 Video (ingevoegd door JS na de klik) */
.video-placeholder .html5-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3; /* Ligt boven de knop en thumbnail */
    border-radius: 28px; 
    object-fit: cover;
}

/* 7. Verbergen van thumbnail en knop wanneer de video actief is (via JS class 'playing') */
.video-container.playing .video-thumbnail,
.video-container.playing .play-button {
    opacity: 0;
    visibility: hidden;
    /* Zorg ervoor dat de z-index van de video (3) nu domineert */
    z-index: 0; 
}

/* ----------------------------------- */
/* EVIDENCE-BASED SECTION */
/* ----------------------------------- */

.evidence-section {
    padding-top: 100px;    /* Ruimte boven de titel 'Evidence-based...' */
    padding-bottom: 120px; /* Ruimte onderaan de gehele sectie */
    background-color: #ffffff; /* Zorg dat de achtergrond wit is als dat nodig is */
}
/* De container die de kaarten vasthoudt */
.research-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* De kaart zelf */
.info-card {
    background-color: #F6F3F0; /* De lichte beige kleur uit je screenshot */
    border-radius: 20px;
    padding: 40px 30px;
    text-decoration: none;
    color: inherit;
    
    /* Zorgt voor gelijke grootte */
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    min-height: 180px; /* Dwingt een gelijke hoogte af */
    
    /* Centrerings-logica */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    /* Voor schaduw en animatie */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* Icoon styling */
.card-icon-wrapper {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.card-icon-wrapper i {
    font-size: 80px; /* Hiermee maak je FontAwesome icoontjes veel groter */
}

.research-icon {
    width: 140px; /* Pas aan naar wens */
    height: auto;
    object-fit: contain;
}

/* De titel tekst */
.card-title-research {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #171717;
    margin-bottom: 1px; /* Duwt de 'Lees het artikel' tekst naar beneden */
}

/* 'Lees het artikel' tekst onderaan */
.read-more-text {
    font-size: 14px;
    color: #8C8C8C; /* Grijze kleur uit screenshot */
    font-weight: 500;
    margin-top: 10px;
}


/* ----------------------------------- */
/* FAQ SECTION - Gecorrigeerde versie */
/* ----------------------------------- */



.faq-section {
    padding: 50px var(--padding-sides);
    background-color: var(--color-background-light);
    text-align: left;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
}

.faq-item {
    padding: 0px 0;
}

.faq-item:first-child { 
    padding-top: 0;
}

.faq-question {
    /* Oorspronkelijke Flexbox stijlen verwijderen */
    /* display: flex; <--- VERWIJDEREN */
    /* justify-content: space-between; <--- VERWIJDEREN */
    
    /* ALLEEN de padding overhouden: */
    padding-top: 10px; 
    padding-bottom: 10px; 
    padding-left: 0 !important; /* Dwingt de padding links naar nul */
    padding-right: 40px; 
    
    cursor: pointer;
    position: relative; /* Cruciaal voor absolute positionering van de iconen */
}

.faq-question h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-dark);

    /* 🛑 DE FIX: Verwijder ALLE marges en paddings */
    margin: 0 !important; 
    padding-top: 35px !important;
    padding-bottom: 35px !important;

    /* Dwingt de h3 naar de linkerkant, duwt iconen naar rechts */
    margin-right: auto !important; 
    
    /* Zorg dat de h3 niet per ongeluk een vast breedte heeft */
    width: auto; 
    
    /* En de tekst links uitlijnen */
    text-align: left !important;
}


.faq-question i {
    font-size: 24px;
    width: 24px; 
    flex-shrink: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
}

/* Chevron Logica: Blijf bij de display: block/none logica */
.faq-question i.fa-chevron-up {
    display: none; 
}
.faq-item.open .faq-question i.fa-chevron-up {
    display: block;
    color: var(--color-orange-primary);
}
.faq-item.open .faq-question i.fa-chevron-down {
    display: none;
}
.faq-item:not(.open) .faq-question i.fa-chevron-up {
    display: none; 
}
.faq-item:not(.open) .faq-question i.fa-chevron-down {
    display: block;
}




/* Aanvullende styles voor het antwoord: */

.faq-answer {
    
    padding-top: 5px !important;
    padding-bottom: 20px !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-gray-text);
    /* Gebruik display: none en display: block in combinatie met JS */
    display: none; 
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
}

.faq-item.open .faq-answer {
    display: block;
    /* Geen horizontale padding, alleen onderkant padding */
    padding: 0 0 5px 0;
}

.faq-divider {
    border: none;
    height: 2px;
    background-color: var(--color-divider);
    margin: 0;
}

/* Download sectie styling */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.download-subtext {
    font-size: 0.9rem;
    color: #535353;
    font-weight: 500;
}

/* Modal Styling */
.modal-overlay {
    display: none; /* Standaard verborgen */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.modal-icon {
    font-size: 3rem;
    color: #fb8500;
    margin-bottom: 20px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.instruction-box {
    background: #f8f9fa;
    border-left: 4px solid #fb8500;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.instruction-box ol {
    margin-top: 10px;
    padding-left: 20px;
}

.modal-note {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 25px;
}


/* ----------------------------------- */
/* READY TO START SECTION (CTA) */
/* ----------------------------------- */

.ready-to-start-section {
    background-color: var(--color-blue-light);
    padding: 100px var(--padding-sides);
    text-align: center;
}

.ready-to-start-section .content {
    max-width: 800px;
    margin: 0 auto;
}

.ready-to-start-section .section-title-large,
.ready-to-start-section .subtitle {
    color: var(--color-white);
}

.ready-to-start-section .subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.secondary-cta {
    background-color: var(--color-orange-primary);
    border-radius: 20px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
}




/* ----------------------------------- */
/* FOOTER STYLES */
/* ----------------------------------- */

.main-footer {
    background-color: var(--color-blue-dark);
    padding: 50px var(--padding-sides) 20px;
    color: var(--color-white);
    font-size: 16px;
}



.logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.logos-row img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-divider {
    border: none;
    height: 0.5px;
    background-color: var(--color-white);
    opacity: 0.5;
    margin: 40px auto;
    max-width: var(--max-width);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links-group {
    display: flex;
    gap: 150px; /* Grote kloof zoals in Figma */
}

.footer-links h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-orange-primary);
}

.team-image {
    max-width: 237px;
    height: auto;
    border-radius: 16px;
}

.legal-links {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: #DFDEE9;
    font-size: 12px;
    font-weight: 400;
}

/* Haal kaders weg en maak afbeelding groter */
.image-content {
    background: none !important; /* Verwijdert eventuele achtergrondvlakken */
    box-shadow: none !important; /* Verwijdert schaduwen van het vak */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.laptop-image-large {
    width: 100%;
    max-width: 1700px; /* Maakt de afbeelding een stuk groter */
    height: auto;
    transition: opacity 0.3s ease;
}

/* Simpele grijze pijltjes */
.slider-arrow {
    background: none;
    border: none;
    color: #888; /* Grijs */
    font-size: 40px; /* Iets groter voor de klikbaarheid */
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: color 0.3s ease;
    padding: 0 0px;
    
}

.slider-arrow prev { 
    left: -10px; /* Hoe kleiner/negatiever dit getal, hoe dichter op de afbeelding */
}

.slider-arrow next { 
    right: -10px; 
}

.slider-arrow:hover {
    color: #333; /* Donkergrijs bij hover */
}

.slider-arrow.prev { left: -40px; }
.slider-arrow.next { right: -40px; }

.legal-links {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 30px;
}

.legal-links a {
    color: #535353;
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #FB8500;
}

.footer-separator {
    color: #D9D9D9;
}

.legal-text-content {
    text-align: left;
    margin-top: 20px;
    line-height: 1.6;
}

.legal-text-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.legal-text-content li {
    margin-bottom: 10px;
}

.close-legal-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
}

.floating-lang-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000; /* Zorgt dat de knop boven alles blijft */
    
    background-color: #FB8500; /* De kenmerkende Honest Mirror oranje kleur */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.floating-lang-switch:hover {
    background-color: #e67a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    border-color: #FFFFFF;
}

/* Specifieke styling voor de opvallende taalknop */
.lang-button-orange {
    background-color: #FB8500 !important; /* Honest Mirror Oranje */
    color: #FFFFFF !important;            /* Witte tekst */
    padding: 8px 16px !important;         /* Ruimte rondom de letters */
    border-radius: 6px;                   /* Licht afgeronde hoeken */
    font-weight: 700 !important;          /* Dikgedrukte letters */
    margin-left: 15px;                    /* Afstand tot de 'Contact' link */
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-button-orange:hover {
    background-color: #e67a00 !important; /* Iets donkerder oranje bij hover */
    transform: translateY(-1px);          /* Subtiele lift bij hover */
    text-decoration: none !important;     /* Geen onderstreping */
}

/* Zorg dat de nav-container de elementen goed uitlijnt */
.nav-container {
    display: flex;
    align-items: center;
}

.lang-button-orange {
    background-color: #FB8500 !important;
    color: #FFFFFF !important;
    padding: 8px 16px !important;
    border-radius: 6px;
    font-weight: 700 !important;
    margin-left: 15px;
    
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Dit zorgt voor de ruimte tussen het icoon en de tekst */
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.lang-button-orange i {
    font-size: 0.9em; /* Maakt het icoontje subtiel iets kleiner dan de tekst */
}

.lang-button-orange:hover {
    background-color: #e67a00 !important;
    transform: translateY(-1px);
}

/* Voor mobiele apparaten iets kleiner maken */
@media (max-width: 768px) {
    .floating-lang-switch {
        top: 15px;
        right: 15px;
        padding: 8px 14px;
        font-size: 14px;
    }
}


/* ----------------------------------- */
/* MEDIA QUERIES (Responsiviteit) */
/* ----------------------------------- */

@media (max-width: 1024px) {
    .improvement-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .steps-list {
        padding-top: 0;
        width: 100%;
        max-width: 500px;
        align-items: flex-start;
        text-align: left;
    }
    
    .advantages-container,
    .research-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .advantage-card, .info-card {
        width: 80%;
        max-width: 400px;
    }

    .research-cards .info-card {
        align-items: center;
        text-align: center;
    }
    .research-cards .info-card .icon-placeholder {
        margin: 0 auto 15px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links-group {
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .section-title-large {
        font-size: 36px;
        line-height: 44px;
    }

    .main-title {
        font-size: 38px;
        line-height: 48px;
    }

    .navigation {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
    }
    
    .nav-container {
        display: flex;
        justify-content: center;
    }
    
    .nav-container a {
        padding: 0 10px;
    }
    
    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
}

/* Language Banner Styling */
.language-banner {
    background-color: #f8f9fa;
    border-bottom: 3px solid #FB8500; /* Uw themakleur oranje */
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.banner-content p {
    margin: 0;
    color: #121212;
    font-size: 15px;
    font-weight: 500;
}

.banner-buttons {
    display: flex;
    gap: 12px;
}

.banner-btn {
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.banner-btn.primary {
    background-color: #FB8500;
    color: white !important;
}

.banner-btn.secondary {
    background-color: #e2e2e2;
    color: #333;
}

.banner-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* Mobiele optimalisatie */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}