:root {
    --pink-color: #ff00ff;
}
@font-face {
    font-family: "Open Sans";
    src: url("../fonts/Open_Sans/static/OpenSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Open Sans";
    src: url("../fonts/Open_Sans/static/OpenSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Open Sans";
    src: url("../fonts/Open_Sans/static/OpenSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/static/Oswald-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/static/Oswald-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/static/Oswald-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/static/Oswald-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", sans-serif;
}
p {
    line-height: 2;
    color: #666;
}
a {
    text-decoration: none;
    color: #fff;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}
.page-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.page-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.3) 0%, rgba(17, 17, 17, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem 3rem;
}
.page-hero-title {
    font-family: "Oswald", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(17, 17, 17, 0.5);
    margin: 0;
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.48) 0%, rgba(17, 17, 17, 1) 100%);
    z-index: 2;
    pointer-events: none;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    background-color: #000;
}
@supports not (object-fit: contain) {
    .hero-video {
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 2.5rem 0;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
}
.logo-img {
    height: 45px;
    width: auto;
    display: block;
}
.logo:hover {
    opacity: 0.8;
}
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    gap: 7.5px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    align-items: center;
}
.nav-menu li {
    margin: 0;
}
.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    transition: opacity 0.3s ease;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
}
.nav-menu a:hover {
    color: var(--pink-color);
}
.nav-menu a.nav-button:hover {
    color: #fff;
}
.nav-button {
    background: #000;
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nav-button:hover {
    background: var(--pink-color);
    color: #fff;
}
.hero-content {
    position: relative;
    z-index: 5;
    text-align: left;
    color: #fff;
    padding: 0 1.25rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    padding-bottom: 4rem;
}
.hero-title {
    font-family: "Oswald", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}
.google-review {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-family: "Open Sans", sans-serif;
}
.google-review-image img {
    width: 90px;
}
.google-review .stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 7.5px;
    display: inline-flex;
    gap: 0;
}
.google-review .stars span {
    display: inline-block;
}
.google-review .review-text {
    font-size: 0.95rem;
    color: #fff;
}
.stars-block {
    background-color: #ffffff2e;
    padding: 5px 10px;
    border-radius: 1000px;
}
.google-review .google-logo {
    vertical-align: middle;
}
.cta-button {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background: #fff;
    color: #000;
}
.hero-subtitle {
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
}
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.25rem;
    }
    .over-container {
        flex-direction: column;
        gap: 2rem !important;
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(17, 17, 17, 0.95);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 99;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu.active::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(17, 17, 17, 0.5);
        z-index: -1;
    }
    .nav-menu li {
        width: 100%;
        font-size: 1rem;
    }
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 0.75rem;
    }
    .nav-button {
        width: 100%;
        text-align: center;
    }
    .hero-content {
        padding: 0 1.5rem;
        padding-bottom: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    .google-review {
        margin-bottom: 1.5rem;
    }
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 14px;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero {
        min-height: 100vh;
    }
    .hero {
        background-image: url(../images/hero-mb.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .hero-video {
        display: none;
    }
    .diensten-section {
        padding: 3rem 0;
    }
    .subtitle {
        font-size: 2.5rem;
    }
    .diensten-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .klanten-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .merken-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem;
    }
    .dienst-card {
        height: 350px;
    }
    .reviews-section {
        padding: 3rem 0;
    }
    .reviews-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    .reviews-title {
        font-size: 2.5rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    .voordelen-lmc {
        padding: 3rem 0;
    }
    .voordelen-lmc-container {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto;
        min-height: auto;
        padding: 0 1rem;
    }
    .voordelen-image {
        height: 400px;
        width: 100%;
        grid-row: 1;
    }
    .voordelen-content {
        padding: 3rem 2rem;
        width: 100%;
        grid-row: 2;
    }
    .voordelen-title {
        font-size: 2rem;
    }
    .voordelen-button {
        align-self: stretch;
        text-align: center;
    }
    .contact-section {
        padding: 3rem 0;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 2rem;
    }
    .contact-title {
        font-size: 2.5rem;
    }
    .page-hero {
        height: 50vh;
        min-height: 350px;
        max-height: 500px;
    }
    .page-hero-title {
        font-size: 3rem;
    }
    .pakketten-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pakketten-grid-3 {
        grid-template-columns: 1fr;
    }
    .extras-info-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .merken-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }
    .footer-columns {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }
    .footer-description {
        max-width: 100%;
    }
    .main-footer {
        padding: 3rem 0 1.5rem;
    }
    .footer-heading {
        font-size: 1rem;
    }
    .footer-text {
        font-size: 0.9rem;
    }
    .extra-card {
        margin-right: 0 !important;
    }
    .extras-info-container {
        grid-template-columns: 1fr !important;
    }
    .pakketten-grid {
        grid-template-columns: 1fr !important;
    }
    .contact-page-section {
        padding: 3rem 0;
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
        .hero {
            background-image: url(../images/hero-mb.webp);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .hero-video {
            display: none;
        }
    }
    .logo-img {
        font-size: 1rem !important;
    }
    .pakket-price .price-label {
        font-size: 1.25rem !important;
    }
    .pakket-price .price-amount {
        font-size: 1.25rem !important;
    }
    .pakket-price .price-excl {
        font-size: 1rem !important;
    }
    .pakket-separator {
        height: 42px;
    }
    .nav-menu {
        gap: 0.75rem;
    }
    .nav-menu a {
        font-size: 0.85rem;
    }
    .nav-button {
        font-size: 16px;
        padding: 0.6rem 1.2rem;
    }
    .hero-content {
        padding: 0 1rem;
        padding-bottom: 2rem;
    }
    .hero-title {
        font-size: 2.7rem;
        margin-bottom: 1.5rem;
    }
    .google-review {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    .google-review .stars {
        font-size: 1rem;
    }
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 14px;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .diensten-section {
        padding: 3rem 0;
    }
    .subtitle {
        font-size: 2rem;
    }
    .diensten-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .diensten-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .klanten-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .dienst-card {
        height: 300px;
    }
    .dienst-title {
        font-size: 1.25rem;
    }
    .over-container {
        flex-direction: column;
        gap: 2rem !important;
    }
    .over-image img {
        max-width: 100%;
        width: 100%;
    }
    .reviews-section {
        padding: 2rem 0;
    }
    .reviews-title {
        font-size: 2rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .review-card {
        padding: 1.5rem;
    }
    .voordelen-lmc {
        padding: 2rem 0;
    }
    .voordelen-lmc-container {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto;
        padding: 0 1rem;
    }
    .voordelen-image {
        height: 300px;
        width: 100%;
        grid-row: 1;
    }
    .voordelen-content {
        padding: 2rem 1.5rem;
        width: 100%;
        grid-row: 2;
    }
    .voordelen-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    .voordelen-list li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .voordelen-button {
        padding: 0.875rem 1.5rem;
        font-size: 14px;
    }
    .contact-section {
        padding: 2rem 0;
    }
    .contact-title {
        font-size: 2rem;
    }
    .contact-description {
        font-size: 1rem;
    }
    .contact-content {
        padding: 2rem 1.5rem !important;
    }
    .contact-whatsapp,
    .contact-info {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
    .page-hero {
        height: 40vh;
        min-height: 300px;
        max-height: 400px;
    }
    .page-hero-content {
        padding: 0 1rem 2rem;
    }
    .page-hero-title {
        font-size: 2.5rem;
    }
    .pakketten-section {
        padding: 3rem 0;
    }
    .pakketten-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .pakket-card {
        padding: 2rem 1.5rem;
    }
    .pakket-title {
        font-size: 1.5rem;
    }
    .pakket-price {
        font-size: 1.1rem;
    }
    .extras-info-section {
        padding: 3rem 0;
    }
    .extras-info-container {
        gap: 2rem;
    }
    .extra-card {
        padding: 1.5rem;
    }
    .extra-title {
        font-size: 1.25rem;
    }
    .info-content p {
        font-size: 0.95rem;
    }
    .gallery-section {
        padding: 3rem 0;
    }
    .gallery-grid-2,
    .gallery-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .merken-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .partners-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .footer-columns {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    .footer-logo-text {
        font-size: 2rem;
    }
    .footer-logo-line {
        width: 80px;
    }
    .footer-description {
        font-size: 0.9rem;
        max-width: 100%;
    }
    .footer-heading {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    .footer-text {
        font-size: 0.85rem;
    }
    .main-footer {
        padding: 2rem 0 1rem;
    }
    .footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem;
        padding-top: 1.5rem;
    }
    .footer-bottom-link {
        font-size: 0.85rem;
    }
}
main {
    margin: 0;
    padding: 0;
}
.diensten-section {
    padding: 5rem 0;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.diensten-section.in-view {
    opacity: 1;
    animation: fadeIn 0.8s ease-out;
}
.diensten-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.subtitle {
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    text-align: left;
}
.title-pink {
    color: var(--pink-color);
}
.diensten-description {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #666;
    text-align: left;
    margin-bottom: 3rem;
    line-height: 1.6;
}
.diensten-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.dienst-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    height: 400px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
}
.diensten-section.in-view .dienst-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}
.diensten-section.in-view .dienst-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
.diensten-section.in-view .dienst-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}
.diensten-section.in-view .dienst-card:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
.dienst-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.dienst-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.dienst-card:hover .dienst-image img {
    transform: scale(1.1);
}
.dienst-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.dienst-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}
.dienst-arrow {
    width: 40px;
    height: 40px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dienst-arrow svg {
    width: 20px;
    height: 20px;
}
.main-footer {
    background: #000;
    color: #fff;
    padding: 4rem 0 2rem;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-logo-section {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-logo-text {
    font-family: "Oswald", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pink-color);
    letter-spacing: 2px;
}
.footer-logo-line {
    width: 100px;
    height: 2px;
    background: #fff;
}
.footer-logo-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-description {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    max-width: 500px;
}
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-heading {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #7f7f7f;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}
.footer-text {
    font-family: "Open Sans", sans-serif;
    font-size: 0.95rem;
    color: #fff;
    margin: 0;
    line-height: 1.6;
}
.footer-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: var(--pink-color);
}
.footer-bottom {
    border-top: 1px solid #000;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-bottom-link {
    font-family: "Open Sans", sans-serif;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-bottom-link:hover {
    color: var(--pink-color);
}
.footer-bottom-separator {
    color: #fff;
}
.over-section {
    padding: 5rem 0;
    background: #f5f5f5;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.over-section.in-view {
    opacity: 1;
    animation: fadeIn 0.8s ease-out;
}
.over-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: center;
    padding: 0 1.25rem;
}
.over-button {
    background: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #000;
}
.over-button:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}
.over-description {
    margin-bottom: 2rem;
}
.over-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}
.over-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.over-feature-line {
    display: inline-block;
    width: 30px;
    height: 1.75px;
    background: var(--pink-color);
    flex-shrink: 0;
}
.over-feature-text {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
}
.over-contact-separator {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 2.5rem 0;
    width: 100%;
}
.over-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.over-contact-label {
    font-family: "Open Sans", sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}
.over-contact-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #000;
    transition: opacity 0.3s ease;
}
.over-contact-whatsapp:hover {
    opacity: 0.8;
}
.over-whatsapp-icon {
    width: 38px;
    height: 38px;
    color: var(--pink-color);
    flex-shrink: 0;
}
.over-contact-number {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
    letter-spacing: 0.5px;
}
.over-image img {
    height: 100%;
    object-fit: cover;
}
.reviews-section {
    padding: 5rem 0;
    background: #f5f5f5;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.reviews-section.in-view {
    opacity: 1;
    animation: fadeIn 0.8s ease-out;
}
.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}
.reviews-header-left {
    flex: 1;
}
.reviews-title {
    font-family: "Oswald", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    text-align: left;
}
.reviews-title-pink {
    color: var(--pink-color);
}
.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.rating-number {
    background: var(--pink-color);
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}
.rating-number-indi {
    background: var(--pink-color);
    color: #fff;
    padding: 0.15rem 0.65rem;
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}
.rating-text {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #666;
}
.reviews-header-right {
    display: flex;
    align-items: center;
}
.google-reviews-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}
.google-logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}
.google-text-blue {
    font-family: "Open Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #4285f4;
}
.google-text-gray {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #666;
}
.google-stars {
    color: #ffd700;
    font-size: 1rem;
    letter-spacing: 1px;
    display: inline-flex;
    gap: 0;
}
.google-stars span {
    display: inline-block;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.reviews-slider-container {
    position: relative;
    width: 100%;
}
.reviews-arrows-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 2rem;
}
.reviews-arrow {
    background: var(--pink-color);
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    color: #fff;
    flex-shrink: 0;
}
.reviews-arrow:hover {
    opacity: 0.8;
    transform: scale(1.1);
}
.reviews-arrow:active {
    transform: scale(0.95);
}
.reviews-arrow svg {
    width: 24px;
    height: 24px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.review-card {
    transition: opacity 0.3s ease-in-out;
}
.review-card {
    background: #fff;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.review-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: space-between;
}
.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    display: inline-flex;
    gap: 0;
}
.review-stars span {
    display: inline-block;
}
.review-rating-number {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}
.review-title {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}
.review-text {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}
.review-author {
    font-family: "Open Sans", sans-serif;
    font-size: 0.8rem;
    color: #666;
}
.review-google-watermark {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    opacity: 0.5;
}
.review-google-watermark img {
    width: 60px;
    display: block;
}
.voordelen-lmc {
    padding: 5rem 0;
}
.voordelen-lmc-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    gap: 0;
    padding: 0 1.25rem;
}
.voordelen-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.voordelen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.voordelen-content {
    background: #000;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.voordelen-title {
    font-family: "Oswald", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}
.voordelen-title-pink {
    color: var(--pink-color);
}
.voordelen-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}
.voordelen-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
}
.voordelen-list li:last-child {
    margin-bottom: 0;
}
.checkmark {
    color: #4caf50;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1.4;
}
.voordelen-button {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-top: auto;
}
.voordelen-button:hover {
    background: #fff;
    color: #000;
}
.klanten-section {
    padding: 5rem 0;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.klanten-section.in-view {
    opacity: 1;
    animation: fadeIn 0.8s ease-out;
}
.klanten-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.klanten-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: 0.5rem;
}
.klanten-card {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 350px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s ease-out;
}
.klanten-section.in-view .klanten-card:nth-child(1) {
    opacity: 1;
    transition-delay: 0.1s;
}
.klanten-section.in-view .klanten-card:nth-child(2) {
    opacity: 1;
    transition-delay: 0.15s;
}
.klanten-section.in-view .klanten-card:nth-child(3) {
    opacity: 1;
    transition-delay: 0.2s;
}
.klanten-section.in-view .klanten-card:nth-child(4) {
    opacity: 1;
    transition-delay: 0.25s;
}
.klanten-section.in-view .klanten-card:nth-child(5) {
    opacity: 1;
    transition-delay: 0.3s;
}
.klanten-section.in-view .klanten-card:nth-child(6) {
    opacity: 1;
    transition-delay: 0.35s;
}
.klanten-card:nth-child(1) {
    grid-column: span 6;
}
.klanten-card:nth-child(2),
.klanten-card:nth-child(3) {
    grid-column: span 3;
}
.klanten-card:nth-child(4),
.klanten-card:nth-child(5) {
    grid-column: span 3;
}
.klanten-card:nth-child(6) {
    grid-column: span 6;
}
.klanten-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.klanten-card-type {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}
.contact-section {
    padding: 5rem 0;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.contact-section.in-view {
    opacity: 1;
    animation: fadeIn 0.8s ease-out;
}
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.contact-content {
    background: #000;
    padding: 2rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
}
.contact-left {
    color: #fff;
}
.contact-title {
    font-family: "Oswald", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.2;
}
.contact-description {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
}
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-whatsapp {
    background: #1a1a1a;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.contact-whatsapp:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
}
.contact-info {
    background: #1a1a1a;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #fff;
}
.contact-label {
    font-weight: 700;
    color: #fff;
}
.contact-value {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-value:hover {
    color: var(--pink-color);
}
.merken-section {
    padding: 5rem 0;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.merken-section.in-view {
    opacity: 1;
    animation: fadeIn 0.8s ease-out;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    width: 100%;
}
.merken-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.merken-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.5rem;
}
.merken-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    display: flex;
    border: 1px solid #e0e0e0;
    opacity: 0;
    transition: opacity 0.6s ease-out;
}
.merken-section.in-view .merken-card:nth-child(1) {
    opacity: 1;
    transition-delay: 0.1s;
}
.merken-section.in-view .merken-card:nth-child(2) {
    opacity: 1;
    transition-delay: 0.15s;
}
.merken-section.in-view .merken-card:nth-child(3) {
    opacity: 1;
    transition-delay: 0.2s;
}
.merken-section.in-view .merken-card:nth-child(4) {
    opacity: 1;
    transition-delay: 0.25s;
}
.merken-section.in-view .merken-card:nth-child(5) {
    opacity: 1;
    transition-delay: 0.3s;
}
.merken-section.in-view .merken-card:nth-child(6) {
    opacity: 1;
    transition-delay: 0.35s;
}
.merken-section.in-view .merken-card:nth-child(7) {
    opacity: 1;
    transition-delay: 0.4s;
}
.merken-section.in-view .merken-card:nth-child(8) {
    opacity: 1;
    transition-delay: 0.45s;
}
.merken-card img {
    display: block;
}
.contact-left .subtitle {
    color: #fff;
}
.footer-logo {
    height: 100px;
    width: auto;
    display: block;
}
.last-text {
    margin-bottom: 1rem !important;
}
.pakketten-section {
    padding: 5rem 0;
    background: #f6f6f6;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.pakketten-section.in-view {
    opacity: 1;
    animation: fadeIn 0.8s ease-out;
}
.pakketten-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.pakketten-description {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #666;
    text-align: left;
    margin-bottom: 3rem;
    line-height: 1.6;
}
.pakketten-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.pakketten-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.pakket-card {
    background: #fff;
    padding: 2.5rem;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
}
.pakketten-section.in-view .pakket-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}
.pakketten-section.in-view .pakket-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
.pakketten-section.in-view .pakket-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}
.pakket-header {
    margin-bottom: 1.5rem;
}
.pakket-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.pakket-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.pakket-price .price-label {
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    font-weight: 200;
    color: #5f5f5f;
    line-height: 1;
    margin-bottom: 0.7rem;
}
.pakket-price .price-amount {
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    line-height: 1;
    margin-right: 0.5rem;
}
.pakket-price .price-excl {
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    font-weight: 200;
    color: #5f5f5f;
    line-height: 1;
}
.pakket-separator {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin-bottom: 1.5rem;
}
.pakket-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}
.pakket-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}
.pakket-features li:last-child {
    margin-bottom: 0;
}
.pakket-features .checkmark {
    color: #4caf50;
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #4caf50;
    color: #fff;
    font-size: 0.75rem;
}
.pakket-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    width: calc(100% + 5rem);
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-bottom: 0;
    margin-top: auto;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}
.pakket-button:hover {
    background: var(--pink-color);
}
.pakket-button:visited {
    color: #fff;
}
.extras-info-section {
    padding: 5rem 0;
    background: #fff;
}
.extras-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}
.extras-column,
.info-column {
    display: flex;
    flex-direction: column;
}
.extra-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.extra-card {
    background: #f6f6f6;
    padding: 1.5rem;
    margin-right: 10rem;
    opacity: 0;
    transform: translateX(-30px);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
}
.extras-info-section.in-view .extra-card:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}
.extras-info-section.in-view .extra-card:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}
.extras-info-section.in-view .extra-card:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.extras-info-section.in-view .extra-card:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}
.extra-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}
.extra-price {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pink-color);
}
.info-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(30px);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
}
.extras-info-section.in-view .info-content {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}
.info-content p {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #666;
    text-align: left;
    line-height: 1.6;
}
.gallery-section {
    padding: 5rem 0;
    background: #fff;
}
.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.gallery-grid {
    display: grid;
    gap: 0.5rem;
    width: 100%;
}
.gallery-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.gallery-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gallery-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}
.gallery-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.gallery-item picture {
    width: 100%;
    display: block;
}
.merk-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    min-width: 0;
    max-width: 100%;
}
.merk-logo-img {
    max-width: 100%;
    height: auto;
    display: block;
}
.contact-page-section {
    padding: 5rem 0;
    background: #fff;
}
.contact-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}
.contact-form-column {
    display: flex;
    flex-direction: column;
}
.contact-form-intro {
    margin-bottom: 2rem;
}
.contact-form-intro p {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #666;
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.contact-form-intro p:last-child {
    margin-bottom: 0;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-family: "Open Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
}
.form-group input,
.form-group textarea {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    color: #000;
    background: #fff;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-color);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
}
.contact-form-button:hover {
    background: var(--pink-color);
}
.contact-details-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.company-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.company-name {
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    margin-top: 0;
}
.contact-address {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.5rem;
}
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}
.contact-detail-item:last-child {
    margin-bottom: 0;
}
.contact-detail-label {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    min-width: 50px;
}
.contact-detail-value {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    line-height: 1.6;
    margin: 0;
}
.contact-detail-value:hover {
    color: var(--pink-color);
}
.contact-map {
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.kennisbank-section {
    padding: 5rem 0;
    background: #fff;
}
.kennisbank-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.kennisbank-title {
    font-family: "Oswald", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 3rem;
    text-align: left;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}
.faq-question:hover {
    background: #f5f5f5;
}
.faq-question-text {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #000;
    flex: 1;
}
.faq-icon {
    font-size: 0.8rem;
    color: #000;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
    padding: 0 2rem;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem 1.5rem 2rem;
}
.faq-answer p {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #000;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .kennisbank-section {
        padding: 3rem 0;
    }
    .contact-page-grid {
        grid-template-columns: 1fr !important;
        gap: 4rem;
    }
    .kennisbank-container {
        padding: 0 1.5rem;
    }
    .kennisbank-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    .faq-question-text {
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 1.5rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    .partners-grid {
        grid-template-columns: repeat(1fr) !important;
        gap: 1rem;
    }
}
.contact-blok {
    background: #f5f5f5;
    padding: 2rem;
    margin-bottom: 2rem;
}
.btw-disclaimer {
    margin-top: 2rem;
}
.btw-disclaimer-text {
    font-family: "Open Sans", sans-serif;
    font-size: 0.7rem;
    color: #818181;
    text-align: left;
}
.link-contact {
    color: var(--pink-color);
    text-decoration: underline;
}
.privacy-content-section {
    padding: 5rem 0;
    background: #fff;
}
.privacy-content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.privacy-update {
    font-family: "Open Sans", sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}
.privacy-section {
    margin-bottom: 3rem;
}
.privacy-section:last-child {
    margin-bottom: 0;
}
.privacy-section-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.privacy-text {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #000;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.privacy-text:last-child {
    margin-bottom: 0;
}
.privacy-contact-info {
    background: #f5f5f5;
    padding: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.privacy-contact-info .privacy-text {
    margin-bottom: 0.5rem;
}
.privacy-contact-info .privacy-text:last-child {
    margin-bottom: 0;
}
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.privacy-list li {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #000;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}
.privacy-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--pink-color);
    font-weight: bold;
    font-size: 1.2rem;
}
.privacy-list li:last-child {
    margin-bottom: 0;
}
.privacy-link {
    color: var(--pink-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.privacy-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .privacy-content-section {
        padding: 3rem 0;
    }
    .privacy-content-container {
        padding: 0 1rem;
    }
    .privacy-section-title {
        font-size: 1.5rem;
    }
    .privacy-text {
        font-size: 0.95rem;
    }
    .privacy-list li {
        font-size: 0.95rem;
        padding-left: 1.25rem;
    }
    .privacy-contact-info {
        padding: 1.25rem;
    }
}


.waarom-section {
    padding: 5rem 0;
    background: #fff;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.waarom-section.in-view {
    opacity: 1;
    animation: fadeIn 0.8s ease-out;
}
.waarom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.waarom-content {
    display: flex;
    flex-direction: column;
}
.waarom-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.waarom-text p {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}
.waarom-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.waarom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .waarom-section {
        padding: 3rem 0;
    }
    .waarom-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .waarom-text {
        gap: 1.25rem;
    }
    .waarom-image {
        height: 400px;
    }
}
