 .page-header {
    position: relative;
    height: 45vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page-header .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(23,42,70,0.8) 0%, rgba(23,42,70,0.4) 100%);
    z-index: 1;
}
.page-header h1 {
    color: #FFFFFF;
    font-size: 52px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin: 0;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.content-section {
    background-color: #FFFFFF;
}

.section-top { padding: 100px 0 50px 0; }
.section-bottom { padding: 50px 0 100px 0; }

.content-grid {
    display: grid;
    gap: 60px;
    align-items: start;
}
.content-grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center; /* Zorgt dat de tekst en het logo mooi in het midden uitlijnen */
}

.grid-left-heavy { grid-template-columns: 1.5fr 1fr; }
.grid-right-heavy { grid-template-columns: 1fr 1.5fr; }

.content-text h2 {
    color: #172A46;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.content-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #DB2D2B;
}

.content-text h2.main-title {
    color: #DB2D2B;
    margin-top: 0;
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 25px;
}

.content-text h2.main-title::after {
    display: none;
}

.content-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.content-text p.note {
    font-size: 15px;
    font-style: italic;
    color: #777;
    margin-top: -10px;
}
/* Foto Styling */
.image-stack, .single-image {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 10px;
}

    .image-stack img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        display: block;
    }

    .image-stack img:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    }


.image-wrapper img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
}

.image-wrapper img:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

/* Quote Banner */
.quote-banner {
    background: linear-gradient(135deg, #0e1a2b 0%, #172A46 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-bottom: 6px solid #DB2D2B;
    margin: 20px 0;
}

.quote-banner h2 {
    font-family: "open_sansbold_italic", Arial, serif;
    font-size: 28px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.5;
}

.cta-bottom {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f8f8 0%, #eef1f5 100%);
    border-left: 5px solid #DB2D2B;
    border-radius: 5px;
}

.cta-bottom h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    color: #172A46;
}

.content-title {
    color: #172A46;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 32px;
    position: relative;
    padding-bottom: 15px;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #DB2D2B;
}



/* Formulier Styling */
.form-container {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-top: 5px solid #172A46;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: "open_sanssemibold", Arial, serif;
    color: #1D1D1B;
    font-size: 15px;
}

.form-group label sup {
    color: #DB2D2B;
    font-size: 14px;
    top: -2px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    font-family: "open_sansregular", Arial, serif;
    font-size: 16px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #DB2D2B;
    box-shadow: 0 0 8px rgba(219, 45, 43, 0.15);
    outline: none;
}

/* Meldingen Styling (Success / Error van PHP) */
span.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    padding: 20px;
    border-left: 5px solid #c62828;
    border-radius: 4px;
    margin-bottom: 30px;
    line-height: 1.6;
}

span.success {
    display: block;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 20px;
    border-left: 5px solid #2e7d32;
    border-radius: 4px;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: bold;
}

/* Map & Info Styling */
.info-card {
    background: #172A46;
    color: #FFFFFF;
    padding: 35px 40px;
    border-radius: 10px 10px 0 0;
}

.info-card h3 {
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.info-list li strong {
    color: #DB2D2B;
    min-width: 90px;
    display: inline-block;
}

.info-list a {
    color: #FFFFFF;
    text-decoration: none;
}

.info-list a:hover {
    color: #DB2D2B;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.partner-logo-box {
    text-align: center;
    background: #f8f8f8;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-bottom: 5px solid #DB2D2B;
}

.partner-logo-box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* USP Cards styling rechterkant */
.usp-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 10px;
}

.usp-card {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-left: 5px solid #172A46;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Variaties in accentkleur voor de boxjes */
.usp-card.card-red { border-left-color: #DB2D2B; }
.usp-card.card-blue { border-left-color: #172A46; }
.usp-card.card-dark { border-left-color: #0e1a2b; }

.usp-card h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #172A46;
}

.usp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usp-list li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    color: #333;
}

.usp-list li::before {
    content: '✔';
    color: #DB2D2B;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    font-weight: bold;
}


.price-section { padding: 80px 0 100px 0; background-color: #fafbfc; }
.date-subtitle { font-family: "open_sansbold_italic", Arial, serif; color: #DB2D2B; font-size: 22px; text-align: center; margin-bottom: 50px; }

/* --- Modern Tabs --- */
.pricelist-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.tab-btn { padding: 12px 28px; border: 2px solid #172A46; background: #fff; color: #172A46; font-family: "open_sanssemibold", Arial, serif; font-size: 16px; border-radius: 40px; cursor: pointer; transition: all 0.3s ease; }
.tab-btn:hover { background: #eef1f5; }
.tab-btn.active { background: #172A46; color: #ffffff; box-shadow: 0 8px 20px rgba(23,42,70,0.2); transform: translateY(-2px); border-color: #172A46; }
.tab-panel { display: none; animation: fadeInTab 0.5s ease forwards; }
.tab-panel.active { display: block; }
@keyframes fadeInTab { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* --- Modern Accordion --- */
.accordion { display: flex; flex-direction: column; gap: 15px; max-width: 900px; margin: 0 auto; }
.accordion-item { background: #ffffff; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.06); border: 1px solid #eef1f5; overflow: hidden; }
.accordion-header { width: 100%; text-align: left; padding: 22px 30px; background: #ffffff; border: none; font-family: "open_sansbold", Arial, serif; font-size: 18px; color: #172A46; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; }
.accordion-header:hover { background: #fafbfc; color: #DB2D2B; }
.accordion-header.active { border-bottom: 1px solid #eef1f5; color: #DB2D2B; background: #fafbfc; }
.accordion-icon { font-size: 26px; font-weight: 300; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.accordion-header.active .accordion-icon { transform: rotate(45deg); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); background: #ffffff; }
.accordion-body-inner { padding: 30px; }

/* --- Inner Price Table --- */
.modern-price-table { width: 100%; border-collapse: collapse; margin-top: 5px; }
.modern-price-table th { text-align: left; padding: 14px 20px; background: #eef1f5; color: #172A46; font-family: "open_sanssemibold", Arial, serif; font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 6px; }
.modern-price-table th:first-child { border-radius: 6px 0 0 6px; }
.modern-price-table th:last-child { border-radius: 0 6px 6px 0; }
.modern-price-table td { padding: 16px 20px; border-bottom: 1px solid #f0f4f8; font-size: 15px; color: #333; }
.modern-price-table tr:last-child td { border-bottom: none; }
.modern-price-table tr:hover td { background-color: #fafbfc; }
.modern-price-table td strong { color: #172A46; font-family: "open_sanssemibold", Arial, serif; font-size: 16px; }

.category-desc { font-size: 15px; color: #666; margin-bottom: 20px; line-height: 1.6; }
.category-note { font-size: 14px; color: #666; font-style: italic; background: #fff5f5; padding: 15px 20px; border-radius: 8px; margin-top: 25px; border-left: 4px solid #DB2D2B; }

/* --- PDF Specific Styles (Hidden on Web, active in Export) --- */
#pdf-content { display: none; }
.pdf-wrapper { background: #FFFFFF; }
.pdf-table { width: 100%; border-collapse: collapse; font-family: Arial, sans-serif; }
.pdf-table th { background-color: #172A46; color: #FFFFFF; padding: 12px 20px; text-align: left; font-size: 14px; text-transform: uppercase; }
.pdf-table td { padding: 12px 20px; border-bottom: 1px solid #eef1f5; font-size: 13px; color: #333; }
.pdf-table tr.category-row td { background-color: #f8f8f8; border-top: 3px solid #172A46; padding-top: 20px; padding-bottom: 12px; }
.pdf-category-title { font-weight: bold; font-size: 16px; color: #172A46; display: block; margin-bottom: 4px; }
.pdf-category-title::before { content: ""; display: inline-block; width: 4px; height: 16px; background: #DB2D2B; margin-right: 10px; vertical-align: middle; }
.pdf-category-desc { color: #555; font-size: 12px; display: block; margin-left: 14px; margin-bottom: 4px; }
.pdf-note-row td { font-style: italic; color: #666; background: #fafafa; font-size: 12px; }

.download-box { background: linear-gradient(135deg, #f8f8f8 0%, #eef1f5 100%); padding: 60px 40px; border-radius: 15px; text-align: center; border-top: 6px solid #DB2D2B; box-shadow: 0 15px 35px rgba(0,0,0,0.08); max-width: 900px; margin: 60px auto 0 auto; }
.download-box h2 { font-size: 26px; margin-bottom: 30px; line-height: 1.5; }


@media (max-width: 991px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .grid-right-heavy .single-image {
        order: -1; /* Zet de afbeelding boven de tekst op mobiel */
    }
    .image-stack {
        flex-direction: row;
        gap: 20px;
    }
    .image-wrapper {
        width: calc(50% - 10px);
    }
    .content-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .content-grid-3{
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .image-stack img {
        width: calc(50% - 10px);
    }
    .image-stack img:last-child {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 36px;
    }
    .section-top { padding: 70px 0 30px 0; }
    .section-bottom { padding: 30px 0 70px 0; }
    .quote-banner {
        padding: 40px 20px;
    }
    .quote-banner h2 {
        font-size: 22px;
    }
    .image-stack {
        flex-direction: column;
    }
    .image-wrapper {
        width: 100%;
    }
    
    .image-stack img {
        width: 100%;
    }
    
    .content-text h2.main-title {
        font-size: 30px;
    }
    
    .usp-card {
        padding: 25px 20px;
    }
    .content-section { padding: 70px 0; }
    .form-container { padding: 30px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-group.full-width { grid-column: 1; }
    .info-card { padding: 30px 20px; }
    .info-list li { flex-direction: column; }
    .info-list li strong { margin-bottom: 5px; }
    /* PRICELIST */
    .tab-btn { padding: 10px 15px; font-size: 14px; width: calc(50% - 6px); text-align: center; }
    .accordion-header { font-size: 16px; padding: 18px 20px; }
    .accordion-body-inner { padding: 20px 15px; }
    .modern-price-table th, .modern-price-table td { padding: 12px 10px; font-size: 13px; }
    .modern-price-table td strong { font-size: 13px; }
    .download-box { padding: 40px 20px; }
    .download-box h2 { font-size: 20px; }
}