/* =====================
   Algemeen / Basis
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Roboto:wght@400;500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    overflow-x: hidden;
}
body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    text-align: center;
    background: #22304d;
    min-height: 100vh;
    display: block;
    overflow-y: auto;
}

/* =====================
   Navbar
   ===================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: absolute;
    width: 100%;
    z-index: 10;
    animation: slideDown 1s ease-in-out;
}
.navbar .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}
.navbar .logo .logo-image {
    width: 35px;
    height: 50px;
    position: relative;
    top: -6px;
}
.navbar .logo .navbar-title-marechaussee {
    margin-left: 11px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
    top: 0;
    display: inline-block;
}

/* =====================
   Hero Section
   ===================== */
.hero {
    position: relative;
    width: 100%;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin: 0.2em 0;
}
.main-title {
    font-size: 3.5rem;
    font-weight: 6500;
    margin-bottom: 0.2em;
}
.subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.7em;
}
.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
    line-height: 1.7rem;
    margin-bottom: 1.5em;
}
.solliciteer-btn {
    background: #fff;
    color: #2a2c59;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0.8em 2.2em;
    margin-top: 2rem;
    cursor: pointer;
    text-decoration: none;
}
.solliciteer-btn:hover {
    background: #e0e0e0;
    color: #1a1b3a;
    transform: scale(1.04);
}

/* =====================
   Afbeeldingen / Image Section
   ===================== */
.image-section {
    position: relative;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0.8em 2em;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.image-section img {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.image-section .home-image {
    margin-top: -4rem;
}

/* =====================
   Banner Section
   ===================== */
.banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
}
.banner-image-container {
    position: relative;
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: none;
    border: none;
    box-shadow: none;
}
.banner-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    background: none;
    border: none;
    box-shadow: none;
}
.banner-title, .banner-subtitle {
    position: absolute;
    left: 0;
    right: 0;
    color: #fff;
    text-align: center;
    text-shadow: 0 4px 32px rgba(0,0,0,0.45);
    z-index: 2;
    pointer-events: none;
}
.banner-title {
    top: 50%;
    transform: translateY(-60%);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
}
.banner-subtitle {
    top: 65%;
    transform: translateY(-50%);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

/* =====================
   Wervingssectie
   ===================== */
.white-section-top {
    background: #f5f8fc;
    width: 100%;
    min-height: 850px;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
}
.white-section {
    background: #fff;
    width: 100%;
    min-height: 990px;
    margin-top: 0;
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 2rem 2rem 2rem;
}
.wervings-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    height: 100%;
}
.wervings-img-col {
    flex: 0 0 44%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wervings-img-col img {
    width: 340px;
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}
.wervings-img-col span {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #253041;
    letter-spacing: 2px;
    margin-top: 1.5rem;
}
.wervings-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 3.5rem;
}
.wervings-text-col h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #23242a;
    margin: 0 0 0.5rem 0;
    text-align: left;
    align-self: flex-start;
}
.wervings-text-col .wervings-subtitle {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.13rem;
    color: #23242a;
    margin: 0 0 1.2rem 0;
    line-height: 1.5;
    text-align: left;
    align-self: flex-start;
}
.wervings-text-col p {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.35rem;
    color: #23242a;
    margin: 0 0 2.2rem 0;
    line-height: 1.5;
}
.wervings-text-col ul {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.15rem;
    color: #23242a;
    margin: 0 0 2.2rem 1.2rem;
    padding: 0;
    list-style: none;
}
.wervings-text-col li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1.5em;
}
.wervings-text-col li:before {
    content: '›';
    position: absolute;
    left: 0;
    color: #7a8ca3;
    font-size: 1.5em;
    top: 0.1em;
}
.wervings-text-col a {
    color: #2a4cff;
    text-decoration: underline;
}

/* =====================
   Team / Leiding
   ===================== */
.team-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 1000;
    color: #222;
    margin-top: 1rem;
    margin-bottom: 2.2rem;
    font-family: 'Montserrat', Arial, sans-serif;
}
.team-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    margin-top: 0rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}
.team-photo {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.6rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.team-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.2rem;
    text-align: center;
}
.team-role {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
    text-align: center;
}
.team-extra-image {
    max-width: 60%;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    display: block;
    margin: 0 auto;
}
.team-image-section {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem; /* Extra ruimte onder teamfoto */
}

/* =====================
   Rangen
   ===================== */
.rangen-section {
    width: 100%;
    min-height: 800PX;
    background: #49515f;
    padding: 3rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.000001rem; /* Extra witruimte onder de blauwe sectie */
}
.rangen-title {
    color: #fff;
    font-size: 2.4rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.2rem;
    letter-spacing: 0.03em;
}
.rangen-subtitle {
    color: #dbe6ff;
    font-size: 1.25rem;
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
    margin-bottom: 2.2rem;
    letter-spacing: 0.02em;
}
.rangen-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.rang-item {
    background: rgba(255,255,255,0.09);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: box-shadow 0.18s, background 0.18s;
    border: 1.5px solid #3d4660;
}
.rang-item.active, .rang-item:hover {
    background: rgba(255,255,255,0.16);
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    border-color: #4e6cff;
}
.rang-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1.1rem 1.5rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.18s;
    user-select: none;
}
.rang-header .rang-img {
    width: 55px;
    height: 60px;
    margin: 0 1.2rem 0 0;
    border-radius: 10px;
    border: 2px solid #e5e6d8;
    background: transparent;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    object-fit: contain;
}
.rang-header .rang-title {
    flex: 1;
    text-align: left;
    font-size: 1.18rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
}
.rang-header .rang-toggle {
    font-size: 2rem;
    color: #fff;
    margin-left: 1.2rem;
    transition: none;
}
.rang-item.active .rang-toggle {
    transform: none;
}
.rang-body {
    background: rgba(34,48,77,0.97);
    z-index: 2;
    color: #dbe6ff;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.08rem;
    padding: 0 2.2rem 1.2rem 5.5rem;
    text-align: left;
    border-top: 1px solid #3d4660;
    line-height: 1.7;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.rang-item.active .rang-body {
    max-height: 900px;
    opacity: 1;
}
.rang-body .bevoegdheden-title {
    color: #fff;
    font-size: 1.13rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0.7rem;
    letter-spacing: 0.01em;
    display: block;
    padding-left: 0.2em;
}
.rang-body ul {
    margin: 0 0 0 0.2em;
    padding: 0;
    list-style: none;
}
.rang-body ul li {
    color: #fff;
    font-size: 1.04rem;
    margin-bottom: 0.25em;
    position: relative;
    padding-left: 1.6em;
    display: flex;
    align-items: center;
}
.rang-body ul li:before {
    content: '-';
    position: absolute;
    left: 0;
    color: #4e6cff;
    font-size: 1.2em;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
}

/* =====================
   Wetboek
   ===================== */
.wetboek-section {
    background: #f7f7f7;
    width: 100%;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-top: 0; /* Geen extra marge meer nodig, want witruimte komt nu van .rangen-section */
}
.wetboek-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.2rem;
    color: #23242a;
    letter-spacing: 0.02em;
    font-family: 'Montserrat', Arial, sans-serif;
    text-shadow: none;
}
.wetboek-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.18rem;
    margin-bottom: 2.2rem;
    letter-spacing: 0.5px;
    font-family: 'Roboto', Arial, sans-serif;
    opacity: 0.92;
}
.wetboek-search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}
.wetboek-search {
    width: 100%;
    min-width: 328px;
    max-width: 420px;
    padding: 0.9rem 1.5rem;
    border: 2px solid #000000;
    border-radius: 40px;
    font-size: 1.13rem;
    outline: none;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: border 0.2s, box-shadow 0.2s;
}
.wetboek-search:focus {
    border: 2px solid #888;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.wetboek-container {
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 0;
    padding-right: 0;
}
.wetboek-item {
    background: transparent;
    border-radius: 0;
    margin-bottom: 22px;
    box-shadow: none;
    overflow: hidden;
    transition: background 0.2s, border 0.2s;
    border: 2px solid #000000;
    position: relative;
}
.wetboek-item:hover, .wetboek-item.active {
    background: rgb(225, 225, 225);
    border-color: #000000;
}
.wetboek-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 22px 38px 12px 38px;
    font-size: 1.08rem;
    font-weight: 500;
    color: #23242a;
    background: transparent;
    border: none;
    transition: color 0.2s, background 0.2s;
    font-family: 'Roboto', Arial, sans-serif;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.wetboek-header:hover, .wetboek-item.active .wetboek-header {
    background: transparent;
    color: #23242a;
}
.wetboek-toggle {
    font-size: 1.7rem;
    color: #000000;
    margin-left: 1.2rem;
    font-weight: 800;
    user-select: none;
    transition: color 0.2s;
}
.wetboek-item.active .wetboek-toggle {
    color: #23242a;
}
.wetboek-body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #23242a;
    font-size: 1rem;
    text-align: left;
    padding: 0 38px 18px 38px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: transparent;
    transform: translateY(-10px);
    transition: max-height 0.7s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), background 0.25s;
}
.wetboek-item.active .wetboek-body {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    background: transparent;
    color: #23242a;
}
.highlight {
    background: #e0e0e0;
    color: #23242a;
    border-radius: 2px;
    padding: 0 2px;
}

/* =====================
   FAQ
   ===================== */
.faq-section {
    width: 100%;
    background: transparent;
    margin-top: 4rem;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faq-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2.5rem;
}
.faq-container {
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item {
    background: transparent;
    border: 2px solid #e5e6d8;
    border-radius: 0;
    margin-bottom: 22px;
    box-shadow: none;
    transition: background 0.2s, border 0.2s;
}
.faq-item:hover, .faq-item.active {
    background: rgba(229, 230, 216, 0.08);
    border-color: #e5e6d8;
}
.faq-question {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
    padding: 22px 38px 12px 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
    background: transparent;
    border: none;
    transition: color 0.2s;
}
.faq-item.active .faq_question, .faq_item:hover .faq-question {
    color: #fff;
}
.faq-answer {
    font-family: 'Roboto', Arial, sans-serif;
    color: #fff;
    font-size: 1rem;
    text-align: left;
    padding: 0 38px 18px 38px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: transparent;
    transform: translateY(-10px);
    transition: max-height 0.7s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), background 0.25s;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    background: transparent;
    color: #fff;
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 18px;
}
.faq-number {
    display: inline-block;
    min-width: 2.2em;
    text-align: right;
    font-weight: 700;
    font-size: 1.25rem;
    color: #4e6cff;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-right: 8px;
}

/* =====================
   Afsluit / Discord knop
   ===================== */
.afsluit-section {
    background-color: #fff;
    min-height: 420px;
    padding: 4.5rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.afsluit-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    width: 100%;
    max-width: 600px;
}
.afsluit-tekst {
    color: #23242a;
    font-size: 1.35rem;
    font-family: 'Roboto', Arial, sans-serif;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
}
.groot-discord-btn-pro {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #5865F2 0%, #4854c7 100%);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    font-size: 1.22rem;
    font-weight: 700;
    padding: 1.1em 2.8em;
    margin: 0.5em 0 0.5em 0;
    box-shadow: 0 6px 32px rgba(88,101,242,0.18), 0 1.5px 8px rgba(88,101,242,0.10);
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap; /* Tekst altijd op één regel */
    min-width: 220px;    /* Genoeg ruimte voor tekst op mobiel */
}
.groot-discord-btn-pro:hover, .groot-discord-btn-pro:focus {
    background: linear-gradient(90deg, #4854c7 0%, #5865F2 100%);
    color: #fff;
    box-shadow: 0 10px 40px rgba(88,101,242,0.28), 0 2px 12px rgba(88,101,242,0.13);
    transform: scale(1.045);
}
.discord-btn-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(88,101,242,0.18) 0%, rgba(88,101,242,0.08) 80%, transparent 100%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50px;
    filter: blur(2px);
}
.discord-icon-pro {
    width: 32px;
    height: 32px;
    margin-right: 0.9em;
    z-index: 1;
}
.discord-btn-text-pro {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.18rem;
    letter-spacing: 0.04em;
    z-index: 1;
}
.afsluit-divider {
    width: 80%;
    max-width: 340px;
    border: none;
    border-top: 2px solid #e5e6d8;
    margin: 2.2rem auto 0.7rem auto;
    opacity: 0.7;
}
.copyright {
    color: #23242a;
    font-size: 1.02rem;
    margin-top: 0.2rem;
    text-align: center;
    font-family: 'Roboto', Arial, sans-serif;
    opacity: 0.7;
    letter-spacing: 0.01em;
}

/* =====================
   Media Queries (Mobiel)
   ===================== */
@media (max-width: 700px) {
    /* Algemeen */
    html, body {
        width: 100vw;
        overflow-x: hidden;
    }
    body {
        font-size: 15px;
        text-align: left;
    }
    /* Navbar */
    .navbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0.7rem 0.7rem 0.2rem 0.7rem;
        position: static;
        width: 100vw;
        min-width: 0;
        background: #22304d;
    }
    .navbar .logo {
        display: flex;
        align-items: center;
        font-size: 1.05rem;
        margin-bottom: 0;
    }
    .navbar .logo .logo-image {
        width: 26px;
        height: 34px;
        top: 0;
        margin-right: 6px;
    }
    .navbar .logo .navbar-title-marechaussee {
        font-size: 0.93rem;
        margin-left: 0;
        position: static;
    }
    .navbar img[alt="Decoratie"] {
        height: 44px !important;
        margin-left: 0.7rem;
        margin-top: 0;
        align-self: center;
    }
    /* Hero */
    .hero {
        min-height: unset;
        padding: 1.2rem 0.2rem 0.2rem 0.2rem;
        text-align: center;
    }
    .main-title {
        font-size: 1.1rem;
        margin-bottom: 0.7em;
    }
    .subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.1em;
    }
    .hero-description {
        font-size: 0.97rem;
        padding: 0 0.1rem;
        line-height: 1.5rem;
        margin-bottom: 1em;
        text-align: center;
    }
    .solliciteer-btn {
        font-size: 1.01rem;
        padding: 0.7em 1.2em;
        margin-top: 1.2rem;
        width: 70vw;
        max-width: 220px;
        border-radius: 18px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    /* Afbeeldingen */
    .image-section {
        padding: 0.2em 0.2em;
        margin-top: 2.2rem !important;
        margin-bottom: 1.5rem !important;
    }
    .image-section img.home-image {
        margin-top: 0;
        max-width: 99vw;
        border-radius: 12px;
    }
    /* Wervingssectie */
    .wervings-flex {
        flex-direction: column;
        padding: 0 0.2rem;
        gap: 1.2rem;
    }
    .wervings-img-col {
        display: none;
    }
    .wervings-text-col {
        padding-left: 0;
        align-items: center;
        width: 100%;
    }
    .wervings-text-col h1 {
        font-size: 1.15rem;
        margin-left: 1.1rem;
        margin-right: 0.5rem;
        text-align: left;
        width: auto;
    }
    .wervings-text-col .wervings-subtitle {
        font-size: 0.95rem;
        margin-left: 1.1rem;
        margin-right: 0.5rem;
        text-align: left;
        width: auto;
    }
    .wervings-text-col ul,
    .wervings-text-col li {
        font-size: 0.95rem;
        margin-left: 1.1rem;
        margin-right: 0.5rem;
        text-align: left;
    }
    /* Banner */
    .banner-image {
        height: 180px;
        min-height: unset;
        max-height: 180px;
        object-fit: cover;
        object-position: center 35%;
    }
    .banner-title {
        font-size: 1.45rem;
        top: 48%;
        transform: translateY(-60%);
    }
    .banner-subtitle {
        font-size: 0.85rem;
        top: 65%;
        transform: translateY(-50%);
    }
    .banner-image-container {
        min-height: 180px;
    }
    /* Team */
    .team-title {
        margin-top: 1.2rem;
    }
    /* Rangen */
    .rangen-content {
        max-width: 97vw;
        gap: 0.7rem;
    }
    .rang-item {
        max-width: 340px;
        width: 90vw;
        font-size: 0.92rem;
        border-radius: 10px;
    }
    .rang-header {
        padding: 0.5rem 0.7rem;
        font-size: 0.92rem;
    }
    .rang-header .rang-img {
        width: 22px;
        height: 24px;
        margin-right: 0.3rem;
    }
    .rang-body {
        padding: 0 0.7rem 0.7rem 2.2rem;
        font-size: 0.82rem;
    }
    /* FAQ */
    .faq-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .faq-container,
    .wetboek-container {
        max-width: 99vw;
        min-width: 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .faq-item,
    .wetboek-item {
        margin-bottom: 22px;
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
        transition: background 0.2s, border 0.2s;
    }
    .white-section, .white-section-top {
        padding: 2.5rem 0.1rem 2.5rem 0.1rem;
        min-height: 650px;
    }
    .white-section-title {
        font-size: 1.05rem;
        margin-top: 0.7rem;
        margin-bottom: 0.7rem;
    }
    /* Wetboek */
    .wetboek-artikel {
        padding: 0.8em 0.5em;
        font-size: 0.98em;
    }
    /* Discord knop */
    .groot-discord-btn-pro {
        font-size: 1.01rem;
        padding: 0.7em 1.2em;
        width: 70vw;
        max-width: 220px;
        border-radius: 18px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =====================
   Extra Responsive (Wetboek/FAQ breedte)
   ===================== */
@media (max-width: 950px) {
  .faq-container,
  .wetboek-container {
    max-width: 99vw;
    min-width: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Wetboek artikelen in wit kader met radius en spacing */
.wetboek-body .wetboek-artikel {
    background: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    margin-bottom: 16px;
    padding: 1.3em 1.3em;
    color: #23242a;
    font-size: 1.04em;
    transition: box-shadow 0.18s, background 0.18s;
}
.wetboek-body .wetboek-artikel:last-child {
    margin-bottom: 0;
}
