	
:root {
    --brand: #ff5f00;
    --bg-soft: #fff3e6;
    --accent-soft: #ffe9d6;
    --muted: #666;
}

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff;
            color: #333;
        }


header {
    background-color: #ff5f00;
    color: white;
    text-align: center;
    padding: 6px 16px; /* was 10px 20px → nu kleiner */
}

header img {
    max-width: 160px; /* was 220px → nu compacter */
    height: auto;
    display: block;
    margin: 0 auto 10px; /* minder ruimte onder logo */
    background-color: white;
    padding: 8px; /* iets kleiner */
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


        main {
            padding: 20px;
            max-width: 900px;
            margin: auto;
        }

        h1 {
            color: white;
            font-size: 1.6em;
            margin-top: 4px;
        }

        h2 {
            color: #ff5f00;
            margin-top: 30px;
            font-size: 1.4em;
        }

        ul {
            list-style-type: none;
            padding: 0;
        }

        ul li {
            background: #f9f9f9;
            margin-bottom: 10px;
            padding: 15px;
            border-radius: 6px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .tarief {
            font-weight: bold;
            color: #333;
        }

        /* Algemene bepalingen */
        .bepalingen {
            background: var(--bg-soft);
            padding: 20px;
            border-radius: 10px;
            border-left: 6px solid var(--brand);
            margin-top: 30px;
        }
        .bepalingen h2 {
            margin-top: 0;
        }
        .bepalingen ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .bepalingen li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 10px;
        }
        .bepalingen li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--brand);
            font-weight: 800;
        }
        .bepalingen li.highlight {
            background: var(--accent-soft);
            padding: 10px 12px 10px 36px;
            border-radius: 8px;
        }

.bepalingen li.cross::before {
    content: "✖";
    color: #ff0000; /* rood voor duidelijkheid */
    position: absolute;
    left: 0;
    font-weight: bold;
}
.garantie-blok {
    background: var(--bg-soft);
    border-left: 6px solid var(--brand);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.garantie-blok h2 {
    margin-top: 0;
    color: var(--brand);
    font-size: 1.4em;
}

.garantie-blok ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.garantie-blok li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.garantie-blok li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
    font-weight: bold;
}
.highlight {
    background: #ffe9d6;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
}
footer {
    background-color: var(--brand);
    color: white;
    padding: 15px 20px;
    width: 100%;
    box-sizing: border-box; /* voorkomt dat padding extra breedte toevoegt */
    overflow-x: hidden; /* voorkomt horizontale scroll */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap; /* voorkomt dat elementen buiten beeld duwen */
    gap: 10px; /* ruimte tussen items */
}

.footer-content span {
    font-size: 1em;
    font-weight: bold;
    white-space: nowrap; /* voorkomt rare afbrekingen */
}

.footer-content img {
    max-height: 40px;
    width: auto;
}
        /* Kleine details */
        .note {
            color: var(--muted);
            font-size: 0.95rem;
            margin-top: 4px;
        }


        @media (max-width: 768px) {
            header img {
                max-width: 160px;
            }
            h1 {
                font-size: 1.5em;
            }
			

        }
		
		.menu-blok {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: var(--bg-soft);
    padding: 12px;
    border-bottom: 2px solid var(--brand);
}

.menu-blok button {
    background-color: var(--brand);
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.menu-blok button:hover {
    background-color: #e65500; /* iets donkerder oranje */
}
/* Responsive menu voor mobiel */
@media (max-width: 768px) {
    .menu-blok {
        flex-direction: column; /* knoppen onder elkaar */
        align-items: stretch; /* knoppen vullen de breedte */
    }

    .menu-blok button {
        width: 100%; /* volle breedte */
        margin-bottom: 10px; /* ruimte tussen knoppen */
    }
}
/* Algemene tabelstijl */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Koprij */
table thead th {
    background-color: var(--brand); /* jouw merk-oranje */
    color: white;
    text-align: left;
    padding: 12px;
    font-size: 1em;
}

/* Cellen */
table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    font-size: 0.95em;
}

/* Laatste rij zonder border */
table tr:last-child td {
    border-bottom: none;
}

/* Hover-effect voor rijen */
table tbody tr:hover {
    background-color: var(--accent-soft);
    transition: background 0.3s ease;
}
object[type="application/pdf"] {
    width: 100%;
    height: 80vh; /* 80% van de viewport hoogte */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

