/* Algemene stijlen */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background: #ffffff;
}

/* Navigatiebar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222222; /* Donkerder grijs, maar niet helemaal zwart */
    padding: 10px 100px; /* Aangepaste padding links en rechts */
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3); /* Sterkere schaduw met meer spreiding en opacity */
    position: relative; /* Nodig voor de schaduw */
    z-index: 1000; /* Zorgt ervoor dat de schaduw altijd boven andere elementen komt */
}

.navbar .logo {
    font-size: 24px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.navbar .nav-links {
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.navbar .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 15px;
    transition: opacity 0.3s;
}

.navbar .nav-links a:hover {
    opacity: 0.8;
}

/* Lander */
.lander {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(100vh - 50px); /* 50px voor de navbar */
    background: white;
    padding: 20px 100px; /* Zelfde padding als navbar (100px) links en rechts */
    overflow: hidden; /* Voorkomt dat content buiten de div komt */
}

.lander img {
    max-width: 50%;
    max-height: 100%; /* Zorgt dat de afbeelding niet hoger wordt dan de container */
    object-fit: contain; /* Behoudt aspect ratio en past binnen de grenzen */
    width: auto; /* Laat de breedte zich aanpassen aan de hoogte */
}

.lander .text {
    max-width: 40%;
    text-align: right;
}

.lander .text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .lander {
        padding: 20px 60px; /* Kleiner op medium schermen */
    }

    .lander .text h1 {
        font-size: 28px; /* Kleiner op medium schermen */
    }
}

@media (max-width: 600px) {
    .lander {
        padding: 20px 40px; /* Nog kleiner op kleine schermen */
    }

    .lander .text h1 {
        font-size: 24px; /* Nog kleiner op kleine schermen */
    }
}

@media (max-width: 400px) {
    .lander {
        padding: 20px 20px; /* Kleinste padding voor zeer kleine schermen */
    }

    .lander .text h1 {
        font-size: 20px; /* Kleinste formaat voor zeer kleine schermen */
    }
}

.lander .text p {
    font-size: 18px;
    margin: 10px 0 30px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.lander .text .button-primary {
    display: inline-block;
    margin-top: 20px;
    font-size: 20px; /* Grotere tekst */
    padding: 15px 30px; /* Meer padding voor grotere knop */
}

/* Gemeenschappelijke stijlen voor verhaal en product-beschrijving */
.verhaal,
.product-beschrijving {
    padding-bottom: 10px;
    color: #333;
}

.verhaal .text-container,
.product-beschrijving .text-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 10px 40px;
}

.verhaal h2,
.product-beschrijving h2 {
    font-size: 28px;
    margin: 0 0 20px 0;
    color: #666666;
}

.verhaal p,
.product-beschrijving p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.product-beschrijving ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.product-beschrijving li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Speciale stijl voor het derde kopje */
.verhaal .highlight-section,
.product-beschrijving .highlight-section {
    background-color: #5DA9DD;
    color: white;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
}

.verhaal .highlight-section > div,
.product-beschrijving .highlight-section > div {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.verhaal .highlight-section img,
.product-beschrijving .highlight-section img {
    max-width: 300px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.verhaal .highlight-section h2,
.product-beschrijving .highlight-section h2 {
    color: white;
    margin: 0 0 20px 0;
}

.verhaal .highlight-section p,
.product-beschrijving .highlight-section p {
    margin: 0;
    max-width: 700px;
}

/* Slider styles */
.highlight-section {
    position: relative;
    overflow: hidden;
    padding: 0; /* Verwijderd de padding */
}

.highlight-section .slider-container {
    position: relative;
    width: 100%;
    height: 220px; /* Lager voor plattere slider */
    overflow: hidden;
}

.highlight-section .slide {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    left: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
}

.highlight-section .slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.highlight-section .slide img {
    max-width: 180px; /* Kleiner voor platter effect */
    max-height: 140px; /* Beperk hoogte voor platter effect */
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.highlight-section .slider-button {
    background: white;
    color: #5DA9DD;
    border: none;
    padding: 16px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 18px;
    position: absolute;
    z-index: 1;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.highlight-section .slider-button:hover {
    background: #1D6CA1;
    color: white;
}

.highlight-section .slider-button.prev {
    left: 20px;
}

.highlight-section .slider-button.next {
    right: 20px;
}

.highlight-section .compact-text {
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    overflow-wrap: break-word;
}

@media (max-width: 400px) {
    .highlight-section .slide {
        flex-direction: column;
        text-align: center;
        padding: 40px 10px 10px 10px;
        height: 100%;
        justify-content: flex-start;
        gap: 10px;
    }
    .highlight-section .slide img {
        max-width: 90vw;
        max-height: 100px;
    }
    .highlight-section .slider-button {
        width: 40px;
        height: 40px;
        padding: 12px;
    }
}

/* Product overzicht */
.product-overzicht {
    padding: 40px 40px; /* Van 40px 150px naar 40px 40px */
}

.product-overzicht .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0; /* Verwijder de padding */
}

.product-overzicht .search-bar {
    margin-bottom: 40px;
    width: 100%;
    text-align: left;
    padding: 0 20px; /* Verplaats de padding naar de zoekbalk */
}

.product-overzicht .search-bar input {
    width: 100%;
    padding: 10px 20px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Zorgt dat padding binnen de width: 100% valt */
}

.product-overzicht .product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    justify-content: flex-start;
    padding: 0 20px; /* Voeg dezelfde padding toe aan de product list */
}

.product-overzicht .product-tile {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    width: 280px; /* Aangepast van 375px naar 280px */
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.2s;
    text-align: left;
}

.product-overzicht .product-tile:hover {
    transform: scale(1.05);
}

.product-overzicht .product-tile img {
    max-width: 100%;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.product-overzicht .product-tile h3 {
    font-size: 20px;
    margin: 10px 0;
}

.product-overzicht .product-tile p {
    font-size: 16px;
    color: #666;
}

/* Blauwe knop stijl */
.button-primary {
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 
                0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

.button-primary:hover {
    background-color: #0052a3; /* Iets donkerder blauw bij hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 
                0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Update de bestaande lander button stijl */
.lander .text .button {
    /* Verwijder de oude stijlen */
}

/* Update de navigatie link stijl voor de Bekijk aanbod knop */
.navbar .nav-links a.button-primary {
    background-color: #0066cc;
    border-radius: 3px; /* Kleinere radius voor de navbar knop */
    color: white;
}

.navbar .nav-links a.button-primary:hover {
    background-color: #0052a3;
    opacity: 1;
}

/* Product detail pagina */
.product-detail {
    height: 100vh;
    display: flex;
    background: white;
    position: relative;
}

.product-detail::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #5DA9DD;
}

.product-detail .content-wrapper {
    display: flex;
    flex: 1;
}

.product-detail .input-section {
    flex: 1;
    padding: 0 40px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    border-right: 1px solid #ddd;
    box-shadow: 5px 0 10px -5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: 100%;
}

.product-detail .input-section .input-columns {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.product-detail .input-section .contact-fields {
    margin-top: auto;
    padding-top: 20px;
}

.product-detail .input-section .contact-fields .input-group {
    margin-bottom: 15px;
}

.product-detail .input-section .input-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-detail .input-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 0;
}

.product-detail .input-group label {
    font-size: 12px;
    color: #000000;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-detail .input-group .input-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.product-detail .input-group input,
.product-detail .input-group select {
    padding: 4px 8px;
    border: 1px solid #333333;
    border-radius: 3px;
    font-size: 12px;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #000000;
    font-weight: normal;
    height: 28px;
}

.product-detail .input-group .unit {
    font-size: 13px;
    color: #666666;
    white-space: nowrap;
}

.product-detail .input-group input:focus,
.product-detail .input-group select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 1px #000000;
}

.product-detail .input-group select {
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
    padding-right: 28px;
}

.product-detail .input-group select option {
    font-weight: normal;
    padding: 6px;
}

.product-detail .image-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product-detail .image-section img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-detail .input-section .button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.product-detail .input-section .button-outline,
.product-detail .input-section .button-primary {
    text-align: center;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: bold;
    background: #5DA9DD;
    cursor: pointer;
    width: 100%;
}

.product-detail .input-section .button-outline:hover,
.product-detail .input-section .button-primary:hover {
    background-color: #1D6CA1;
}

.product-detail .input-section .button-primary {
    /* Remove any specific styles for button-primary */
}

.product-viewer {
    width: 100%;
    height: 100%;
    cursor: grab;
    position: relative; /* Voeg position relative toe */
}

.product-viewer:active {
    cursor: grabbing;
}

.product-viewer .product-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    user-select: none;
    position: relative;
}

.product-viewer .product-image.mirrored {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.contact-section {
    padding: 40px 20px;
}

.contact-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-section h2 {
    color: #1D6CA1;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-section .subtitle {
    color: #000000;
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-section .contact-form {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-section .form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-section .left-column,
.contact-section .right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-section .right-column .form-group:last-of-type {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-section .right-column .form-group:last-of-type textarea {
    flex: 1;
}

.contact-section .button-group {
    align-self: flex-end;
    display: flex;
    gap: 20px;
}

.contact-section .button-group .button-primary {
    background: #5DA9DD;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
}

.contact-section .button-group .button-primary:hover {
    background: #1D6CA1;
}

.contact-section .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-section .form-group label {
    color: #000000;
    font-size: 16px;
    font-weight: normal;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
    padding: 8px;
    border: 1px solid #000000;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    background: white;
    color: #000000;
    line-height: 1.6;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
    outline: none;
    border-color: #5DA9DD;
    box-shadow: 0 0 0 1px #5DA9DD;
}

.contact-section .form-group textarea {
    resize: none;
    min-height: 100px;
}

.footer {
    background-color: #1D6CA1;
    color: white;
    padding: 100px 100px 20px 100px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.footer-bottom {
    margin-top: auto;
}

.footer-divider {
    width: calc(100% + 160px);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 -80px 20px -80px;
}

.footer-copyright {
    font-size: 12px;
    color: white;
    text-align: left;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-contact {
    display: flex;
    gap: 60px;
}

.company-name {
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: bold;
    text-align: left;
    color: white;
}

.contact-item {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: white;
    font-weight: bold;
}

.contact-info {
    font-size: 18px;
    letter-spacing: 0.5px;
    color: white;
}

@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        align-items: flex-end;
    }

    .footer-contact {
        margin-top: 20px;
        gap: 20px;
        flex-direction: column;
        align-items: flex-end;
    }

    .company-name {
        text-align: right;
    }

    .navbar .nav-links a.button-primary {
        display: none;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 10px 60px;
    }
    .navbar .logo {
        font-size: 20px; /* Kleiner op medium schermen */
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 10px 40px;
        flex-direction: column; /* Logo en nav-links onder elkaar */
        gap: 10px; /* Ruimte tussen logo en nav-links */
    }

    .navbar .logo {
        font-size: 18px;
    }

    .navbar .nav-links {
        flex-direction: column; /* Links onder elkaar */
        width: 100%; /* Volledige breedte */
        align-items: center; /* Links centreren */
        gap: 10px; /* Ruimte tussen de links */
        margin-left: 0; /* Reset de auto margin */
    }

    .navbar .nav-links a {
        width: 100%; /* Links volledige breedte */
        text-align: center; /* Text centreren */
        padding: 10px 0; /* Meer klikbaar gebied */
    }

    .product-detail {
        flex-direction: column;
        height: auto;
    }

    .product-detail .input-section {
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
        box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.1);
        order: 2; /* Plaats input sectie onder de afbeelding */
    }

    .product-detail .image-section {
        height: 100vh;
        order: 1; /* Plaats afbeelding bovenaan */
    }

    .product-viewer {
        height: 100vh;
    }

    .scroll-button-container {
        left: auto;
        right: 10px;
        transform: none;
        display: flex;
        justify-content: flex-end;
    }
}

@media (max-width: 400px) {
    .navbar {
        padding: 10px 20px;
    }
    .navbar .logo {
        font-size: 16px; /* Kleinste formaat voor zeer kleine schermen */
    }
}

@media (max-width: 700px) {
    .contact-section .form-fields {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-section .button-group {
        align-self: stretch;
    }

    .contact-section .button-group .button-primary {
        width: 100%;
    }

    body {
        font-size: 14px; /* Basis font size kleiner */
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    .verhaal p,
    .product-beschrijving p {
        font-size: 16px;
    }

    .product-overzicht .product-tile h3 {
        font-size: 16px;
    }

    .product-overzicht .product-tile p {
        font-size: 14px;
    }

    .contact-section h2 {
        font-size: 20px;
    }

    .contact-section .subtitle {
        font-size: 16px;
    }

    .contact-section .form-group label {
        font-size: 14px;
    }

    .contact-section .form-group input,
    .contact-section .form-group textarea {
        font-size: 14px;
    }

    .footer .company-name {
        font-size: 20px;
    }

    .footer .contact-info {
        font-size: 16px;
    }
}

/* Eerste en laatste containers in beide secties */
.verhaal .text-container:first-child,
.product-beschrijving .text-container:first-child {
    padding-top: 0;
}

.verhaal .text-container:last-of-type,
.product-beschrijving .text-container:last-of-type {
    padding-bottom: 0;
}

.logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 32px;
    margin-bottom: 32px;
}

.logo {
    max-width: 220px;
    height: auto;
}

.scroll-button-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    pointer-events: none;
}

.scroll-button {
    background: #5DA9DD;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    pointer-events: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.scroll-button:hover {
    background: #1D6CA1;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.scroll-button .arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.scroll-button:hover .arrow {
    transform: translateY(5px);
}

.contact-link {
    color: #666666;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    display: block;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #1D6CA1;
}

.product-beschrijving h2 {
    font-size: 24px;
    margin: 0 0 20px 0;
    color: #1D6CA1;
}

.product-beschrijving p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.product-beschrijving .highlight-section h2 {
    font-size: 24px;
    color: white;
}

.product-beschrijving .highlight-section p {
    font-size: 16px;
    margin: 0;
    max-width: 600px;
}

.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #5DA9DD;
    color: white;
    font-size: 10px;
    font-weight: bold;
    margin-left: 4px;
    cursor: help;
    position: relative;
    vertical-align: middle;
}

.tooltip-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 0;
    transform: none;
    padding: 8px 12px;
    background-color: #333;
    color: white;
    font-size: 12px;
    border-radius: 4px;
    white-space: normal;
    z-index: 9999;
    margin-bottom: 8px;
    width: 200px;
    text-align: left;
    line-height: 1.4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tooltip-icon:hover::before {
    content: '';
    position: absolute;
    bottom: calc(100% - 4px);
    left: 4px;
    transform: none;
    border-width: 4px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    z-index: 9999;
}

/* Zorg ervoor dat de labels de juiste breedte hebben */
.input-group label {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Verwijder alle absolute positionering */
.tooltip-icon {
    position: relative;
    margin-left: 8px;
}

/* Zorg ervoor dat de tooltip binnen de div blijft */
.input-column:last-child .tooltip-icon:hover::after {
    left: auto;
    right: 0;
}

.input-column:last-child .tooltip-icon:hover::before {
    left: auto;
    right: 4px;
}

.compact-text {
    font-size: 0.75em;
    line-height: 1.4;
}

.compact-text h2 {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.compact-text h3 {
    font-size: 1.1em;
    margin: 0.5em 0;
}

.compact-text p {
    margin-bottom: 0.6em;
}

.compact-text ul {
    margin: 0.4em 0;
    padding-left: 1.2em;
    list-style: none;
}

.compact-text li {
    margin-bottom: 0.3em;
}

.content-with-image {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.text-content {
    flex: 2.5;
}

.image-content {
    flex: 1.5;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.section-image {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .content-with-image {
        flex-direction: column;
        gap: 1rem;
    }
    
    .text-content, .image-content {
        width: 100%;
    }

    .image-content {
        justify-content: center;
    }

    .section-image {
        max-width: 75%;
    }
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background-color: #ffffff;
}

.divider-line {
    height: 2px;
    background-color: #1D6CA1;
    flex: 1;
    max-width: 300px;
}

.divider-icon {
    color: #1D6CA1;
    font-size: 24px;
    margin: 0 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .section-divider {
        padding: 30px 0;
    }

    .divider-line {
        max-width: 150px;
    }

    .divider-icon {
        font-size: 20px;
        margin: 0 15px;
        width: 36px;
        height: 36px;
    }
}

/* Verwijder fade-in animatie en maak tekst altijd zichtbaar */
.fade-in-up, .visible, .text-content, .image-content, .text-container {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
}

.product-detail .input-group input[readonly] {
    background-color: #f5f5f5;
    color: #666666;
    cursor: not-allowed;
    border-color: #cccccc;
}

.product-detail .input-group input[readonly]:focus {
    outline: none;
    border-color: #cccccc;
    box-shadow: none;
}

/* Gerelateerde artikelen (gedeeld met blog) */
.related-articles {
    margin: 3rem 0;
}
.related-articles h2 {
    text-align: center;
    margin-bottom: 2rem;
}
.articles-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.article-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    max-width: 320px;
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 340px;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.15s;
    text-decoration: none;
}
.article-card:hover {
    box-shadow: 0 4px 16px rgba(0,86,179,0.15);
    transform: translateY(-2px) scale(1.02);
}
.article-card h3, .article-card p {
    color: #222;
}
.article-card a {
    display: none;
}
.article-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: #fff;
    display: block;
}
.article-card .card-content {
    padding: 1rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 120px;
}
.article-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}
.article-card p {
    flex: 1;
    margin-bottom: 1rem;
}
@media (max-width: 900px) {
    .articles-list {
        flex-direction: column;
        align-items: center;
    }
    .article-card {
        width: 100%;
        max-width: 420px;
        min-height: 340px;
    }
} 