/* General Reset */
* {
    /* ... other resets ... */
    font-family: 'Poppins', sans-serif;
    /* Hier wordt Poppins ingesteld */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    height: auto;

}

/* Body Styling */
body {
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    /* Voorkomt horizontaal scrollen */
}

/* General Section Styling */
section {
    width: 100%;
    padding: 80px 20px;
    /* Add padding for spacing */
    text-align: center;
    background: #f9f9f9;
    /* Default background color */
}

/* Specific Section Styling */
#home {
    background: url('../images/pexels-seven11nash-380768.jpg') no-repeat center center/cover;
    height: 100vh;
    /* Full-screen height for the home section */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

#quiz-section {
    background: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

#slider-section {
    background: #f9f9f9;
    padding: 100px 20px;
    text-align: center;
}

/* Titel boven de slider */
#slider-section h2 {
    font-size: 30px;
    /* Iets groter */
    color: #2b5687;
    /* Consistent met andere titels */
    margin-bottom: 45px;
    /* Meer ruimte onder de titel */
    font-weight: 600;
}

.slide .slide-text-content {
    position: absolute;
    bottom: 20px;
    /* Adjust distance from bottom */
    left: 5%;
    /* Adjust distance from sides */
    right: 5%;
    width: 90%;
    /* Control width based on parent */
    background-color: rgba(43, 86, 135, 0.85);
    color: white;
    padding: 20px;
    /* Reduced padding slightly */
    border-radius: 8px;
    z-index: 2;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    margin: 0;
    /* Remove the negative margin */
    /* Remove max-width: 85%; as width is now controlled by left/right/width */
}

.slide .slide-text-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 0;
}

.slide .slide-text-content p {
    font-size: 15px;
    margin-bottom: 15px;
}

/* Link/Knop binnen de tekst-overlay */
.slide .slide-text-content .slider-link {
    display: inline-block;
    margin-top: 0;
    background: #4a90e2;
    /* Consistent */
    color: white;
    padding: 12px 25px;
    /* Iets grotere knop */
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.2s ease;
}

.slide .slide-text-content .slider-link:hover {
    background: #357ABD;
    transform: translateY(-2px);
    /* Subtiel lift effect */
}

#info-section {
    background: #f9f9f9;
    padding: 100px 20px;
    text-align: center;
}

.info-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.info-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 30%;
    min-width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
}

.info-box h3 {
    font-size: 24px;
    color: #2b5687;
    margin-bottom: 20px;
}

.info-box p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.info-box .info-icon {
    width: 120px;
    /* Vergroot de breedte */
    height: auto;
    /* Zorg ervoor dat de hoogte proportioneel blijft */
    margin-bottom: 20px;
}

.info-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #4a90e2;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease-in-out;
}

.info-btn:hover {
    background: #357abd;
}

footer {
    background: #222;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

/* Navbar Styling */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #2b5687;
    padding: 15px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out;
}

.navbar .nav-links li a:hover {
    color: #4a90e2;
}

.contact-btn {
    background: #4a90e2;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
    border: none;
}

.contact-btn:hover {
    background: #357abd;
}

.triangle {
    margin-left: 5px;
    color: white;
}

/* --- NIEUWE HAMBURGER STYLING V3 --- */

/* Hamburger Button Container */
.hamburger {
    display: none;
    /* Wordt 'flex' in media query */
    flex-direction: column;
    justify-content: space-between;
    /* Verdeelt ruimte tussen streepjes */
    width: 30px;
    /* Breedte van de klikbare zone */
    height: 22px;
    /* Hoogte berekend voor 3px bars + 6.5px ruimte */
    background: transparent;
    /* Geen achtergrond */
    border: none;
    padding: 0;
    /* Geen padding nodig */
    cursor: pointer;
    z-index: 1001;
    position: relative;
    /* Nodig voor absolute positionering van pseudo-elementen indien gewenst */
    outline: none;
    /* Verwijdert outline voor een cleanere look */
}

/* Hamburger Icon (bars) */
.hamburger .bar {
    display: block;
    height: 3px;
    /* Subtiele dikte */
    width: 100%;
    /* Volle breedte van container */
    background: white;
    /* Startkleur wit, duidelijk op donkerblauw */
    border-radius: 3px;
    /* Afgeronde uiteinden, passend bij site */
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    /* Vloeiende animatie (easing) */
    transform-origin: center;
    /* Essentieel voor correcte rotatie */
}

/* Hover Effect - Subtiele kleurverandering van de bars */
.hamburger:hover .bar {
    background: #b0c4de;
    /* LightSteelBlue - subtiele hoverkleur */
}

/* Animatie voor de Hamburger naar "X" */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
    /* Bovenste balk roteert en verplaatst */
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    /* Middelste balk vervaagt */
    transform: scaleX(0.5);
    /* Krimpt horizontaal */
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
    /* Onderste balk roteert en verplaatst */
}

/* Zorg ervoor dat de hamburger zichtbaar is op mobiel */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        /* Maak de container zichtbaar */
    }

    /* Mobile Navbar */
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        gap: 20px;
        background: #2b5687;
        position: absolute;
        top: 60px;
        /* Matcht met navbar hoogte */
        right: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
    }

    .navbar .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- EINDE NIEUWE HAMBURGER STYLING V3 --- */

.overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.overlay h1,
.overlay p {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.overlay h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.overlay p {
    font-size: 18px;
    margin-bottom: 30px;
    color: white;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #4a90e2;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background: #357ABD;
}

.quiz-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    gap: 40px;
}

.quiz-info {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.quiz-info h2 {
    font-size: 28px;
    color: #2b5687;
    margin-bottom: 15px;
}

.quiz-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Icons for Quiz Topics */
.quiz-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.quiz-icon {
    text-align: center;
}

.quiz-icon img {
    width: 50px;
    margin-bottom: 10px;
}

.quiz-icon p {
    font-size: 14px;
    color: #666;
}

/* Quiz Button */
.quiz-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background: #4a90e2;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
    border: none;
}

.quiz-btn:hover {
    background: #357ABD;
}

.quiz-image {
    flex: 1;
    text-align: center;
}

.quiz-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    .quiz-container {
        flex-direction: column;
        text-align: center;
    }

    .quiz-info {
        text-align: center;
    }

    .quiz-icons {
        justify-content: center;
    }

    .quiz-image img {
        max-width: 100%;
    }
}

.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Slider Section */
#slider-section {
    background: #f9f9f9;
    padding: 100px 20px;
    text-align: center;
}

/* Slider Container */
.slider-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual Slide */
.slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.slide {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.slide.active {
    display: flex;
}

/* Slide Image */
.slide img {
    width: fit-content;
    /* Ensures the image fills the container */
    height: 400px;
    /* Set a fixed height for consistency */
    object-fit: cover;
    /* Ensures the image scales properly without distortion */
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);

}

/* Zorg ervoor dat alle afbeeldingen in de slideshow dezelfde grootte hebben */
.slider img {
    width: 100%;
    /* Zorgt ervoor dat de afbeelding de breedte van de container vult */
    height: 400px;
    /* Stelt een consistente hoogte in */
    object-fit: cover;
    /* Zorgt ervoor dat de afbeelding proportioneel wordt geschaald en de container vult */
    border-radius: 15px;
    /* Houdt de afgeronde hoeken consistent */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* Optionele schaduw voor consistentie */
}

/* Slide Text */
.slide p {
    font-size: 18px;
    color: #eee8e8;
    margin: 15px 0;
    font-weight: 600;
}

/* Learn More Button */
.slider-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #4a90e2;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
}

.slider-link:hover {
    background: #357ABD;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    /* Donkerdere achtergrond */
    transform: translateY(-50%) scale(1.05);
    /* Subtiele vergroting */
}

/* Positioning Arrows */
.prev {
    left: -50px;
}

.next {
    right: -50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-container {
        flex-direction: column;
    }

    .slider-btn {
        transform: translateY(-50%);
        /* Behoud verticale centrering */
        z-index: 3;
        /* Zorg dat ze boven de slide-text-content blijven */
    }

    .prev {
        left: 10px;
        /* Plaats dichter bij de linkerrand */
    }

    .next {
        right: 10px;
        /* Plaats dichter bij de rechterrand */
    }

    .product-layout-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .product-container h1 {
        font-size: 28px;
    }

    .product-description h2 {
        font-size: 22px;
    }

    .hamburger {
        display: flex;
    }

    .navbar .nav-links {
        display: none;
        flex-direction: column;
        gap: 20px;
        background: #2b5687;
        position: absolute;
        top: 60px;
        /* Matcht met navbar hoogte */
        right: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
    }

    .navbar .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .info-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .info-box {
        max-width: 90%;
        padding: 15px;
    }

    .quiz-container {
        flex-direction: column;
        text-align: center;
    }

    .quiz-info {
        text-align: center;
    }

    .quiz-icons {
        justify-content: center;
    }

    .quiz-image img {
        max-width: 100%;
    }
}

/* Info Section - Adjusted White Space */
#info-section {
    background: #f9f9f9;
    padding: 100px 20px;
    text-align: center;
}

.info-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.info-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 30%;
    min-width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
}

.info-box h3 {
    font-size: 24px;
    color: #2b5687;
    margin-bottom: 20px;
}

.info-box p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.info-box .info-icon {
    width: 120px;
    /* Vergroot de breedte */
    height: auto;
    /* Zorg ervoor dat de hoogte proportioneel blijft */
    margin-bottom: 20px;
}

.info-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #4a90e2;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease-in-out;
}

.info-btn:hover {
    background: #357abd;
}

/* Responsive Design */
@media (max-width: 900px) {
    .info-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        /* Reduce space on smaller screens */
    }

    .info-box {
        max-width: 90%;
        padding: 15px;
        /* Less padding for smaller screens */
    }
}

/* Footer Section */
footer {
    background: #222;
    color: white;
    padding: 50px 20px;
    /* Increased padding for a bigger footer */
    font-size: 14px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Footer Columns */
.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ddd;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #4a90e2;
}

/* Social Media Icons */
.footer-social {
    text-align: center;
    margin-top: 20px;
}

.footer-social a {
    color: white;
    font-size: 18px;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #4a90e2;
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 12px;
}

#quiz-page {
    background: linear-gradient(to bottom, #f9f9f9, #e3e6ea);
    padding: 80px 20px;
    text-align: center;
}

.quiz-container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.quiz-container h1 {
    font-size: 28px;
    color: #2b5687;
    margin-bottom: 20px;
}

.question {
    display: none;
}

.question.active {
    display: block;
}

.question label {
    font-size: 16px;
    color: #444;
    display: block;
    margin-bottom: 8px;
}

.question select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* General Button Styling */
button,
.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #4a90e2, #357abd);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hover Effect for Buttons */
button:hover,
.cta-btn:hover {
    background: linear-gradient(90deg, #357abd, #2b5687);
    transform: translateY(-2px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

/* Disabled Button Styling */
button:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

/* Results Page Button */
.cta-btn {
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
}

/* Extra styling for the quiz */
#quiz-page {
    background: linear-gradient(to bottom, #f9f9f9, #e3e6ea);
    padding: 80px 20px;
    text-align: center;
}

.quiz-container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 10px;
    background: #e3e6ea;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar-inner {
    height: 100%;
    width: 0%;
    background: #4a90e2;
    transition: width 0.3s ease-in-out;
}

.question {
    display: none;
    text-align: left;
}

.question.active {
    display: block;
}

.question label {
    font-size: 16px;
    color: #444;
    display: block;
    margin-bottom: 8px;
}

.question select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.quiz-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.quiz-buttons button {
    padding: 10px 20px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease-in-out;
}

.quiz-buttons button:hover {
    background: #357abd;
}

.quiz-buttons button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.results {
    display: none;
    background-color: #f9f9f9;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.results.show {
    display: block;
    opacity: 1;
}

.feedback {
    margin-bottom: 20px;
}

.feedback h3 {
    color: #007bff;
    margin-bottom: 10px;
}

.feedback ul {
    list-style-type: disc;
    padding-left: 20px;
}

.feedback ul li {
    margin-bottom: 5px;
    color: #555;
}

#restart-btn {
    display: block;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#restart-btn:hover {
    background-color: #0056b3;
}

/* Styling for the Product Info Page */
#product-info-page {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.product-container {
    max-width: 960px;
    /* Was 800px, nu iets breder voor kolommen */
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.product-container h1 {
    text-align: center;
    font-size: 32px;
    color: #2b5687;
    margin-bottom: 40px;
    /* Meer ruimte onder titel */
}

.product-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 gelijke kolommen */
    gap: 40px;
    /* Ruimte tussen kolommen */
    align-items: start;
    /* Lijn bovenaan uit */
    margin-bottom: 40px;
    /* Ruimte boven de knoppen */
}

.product-media img,
.product-media video {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    /* Meer ruimte onder media */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product-media h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    /* Meer ruimte */
    text-align: left;
    /* Links uitlijnen in kolom */
}

.product-description h2 {
    font-size: 24px;
    /* Grotere subtitels */
    color: #2b5687;
    margin-top: 0;
    margin-bottom: 20px;
    /* Meer ruimte onder subtitel */
}

.product-description p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    /* Grotere regelafstand */
    margin-bottom: 30px;
    /* Meer ruimte onder paragraaf */
}

.product-description ul {
    list-style: disc;
    margin-left: 25px;
    /* Iets meer inspringen */
    margin-bottom: 30px;
    /* Meer ruimte onder lijst */
    padding-left: 5px;
}

.product-description ul li {
    margin-bottom: 12px;
    /* Meer ruimte tussen lijstitems */
    line-height: 1.6;
}

.product-description ul li strong {
    color: #333;
}

.product-page-buttons {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    /* Ruimte boven knoppen */
    border-top: 1px solid #eee;
    /* Lijn boven knoppen */
}

.product-page-buttons .back-btn,
.product-page-buttons .cta-btn {
    margin: 5px 10px;
    /* Ruimte rond knoppen */
}

@media (max-width: 768px) {
    .product-layout-grid {
        grid-template-columns: 1fr;
        /* 1 kolom */
        gap: 35px;
    }

    .product-container h1 {
        font-size: 28px;
        /* Iets kleiner op mobiel */
    }

    .product-description h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {

    .product-page-buttons .back-btn,
    .product-page-buttons .cta-btn {
        display: block;
        margin: 15px auto;
        width: fit-content;
    }
}

.back-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #4a90e2;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
    border: none;
}

.back-btn:hover {
    background: #357abd;
}

.contact-btn {
    background: #4a90e2;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
    border: none;
}

.contact-btn:hover {
    background: #357abd;
}

.triangle {
    margin-left: 5px;
    color: white;
}