<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Gedeelde desktop styling voor alle pagina's */

/* Algemene hero secties met mooie curve onderaan - EXACT gekopieerd van diensten-pagina */
.page-hero, 
.diensten-hero, 
.opleidingen-hero, 
.contact-hero,
.about-hero,
.over-ons-hero,
.calamiteiten-hero {
    padding: 120px 0 70px !important;
    text-align: center !important;
    background-color: #000E87 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: auto !important; /* Verwijder eventuele min-height instellingen */
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Extra specifieke styling voor opleidingen-hero om exact gelijk te maken aan diensten-hero */
.opleidingen-hero {
    padding: 120px 0 70px !important;
    text-align: center !important;
    background-color: #000E87 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
}

.opleidingen-hero .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
}

/* Extra ruimte tussen de elementen in de opleidingen-hero */
.opleidingen-hero h1 {
    font-size: 48px !important;
    margin-bottom: 25px !important;
    color: #fff !important;
}

.opleidingen-hero p {
    font-size: 20px !important;
    color: #fff !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
    padding: 0 20px !important;
}

.page-hero h1, 
.diensten-hero h1, 
.opleidingen-hero h1, 
.contact-hero h1,
.about-hero h1,
.over-ons-hero h1,
.calamiteiten-hero h1 {
    font-size: 48px !important;
    margin-bottom: 15px !important;
    color: #fff !important;
    line-height: 1.2 !important;
}

.page-hero p, 
.diensten-hero p, 
.opleidingen-hero p, 
.contact-hero p,
.about-hero p,
.over-ons-hero p,
.calamiteiten-hero p {
    font-size: 20px !important;
    color: #fff !important;
    margin-bottom: 0 !important;
    line-height: 1.6 !important;
}

/* Gebogen overgang van hero naar content */
.page-hero:after, 
.diensten-hero:after, 
.opleidingen-hero:after, 
.contact-hero:after,
.about-hero:after,
.over-ons-hero:after,
.calamiteiten-hero:after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 30px !important;
    background: white !important;
    border-radius: 50% 50% 0 0 !important;
    transform: translateY(50%) !important;
    z-index: 10 !important;
}

.opleidingen-hero:after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 30px !important;
    background: white !important;
    border-radius: 50% 50% 0 0 !important;
    transform: translateY(50%) !important;
    z-index: 10 !important;
}

/* Intro sectie styling met gebogen rand boven */
.intro,
.about-intro,
.opleidingen-intro,
.contact-intro {
    padding: 60px 0;
    background-color: #f5f5f5;
    position: relative;
    margin-top: -25px;
    z-index: 5;
    border-radius: 30px 30px 0 0;
}

.intro .container,
.about-intro .container,
.opleidingen-intro .container,
.contact-intro .container {
    padding-top: 30px;
    max-width: 1200px;
}

/* Verbeterde section headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #000;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background-color: #ff7a00;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Verwijder de dubbele streep voor de oranje-lijn class */
.oranje-lijn {
    display: none; /* Verberg de extra oranje lijn */
}

/* Cards en content blocks */
.card, 
.content-block {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, 
.content-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Buttons styling */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff7a00;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #e56e00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #ff7a00;
    color: #ff7a00;
}

.btn-secondary:hover {
    background-color: #ff7a00;
    color: #fff;
}

/* Verbeterde feature blocks */
.feature, 
.info-block {
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover, 
.info-block:hover {
    transform: translateY(-10px);
}

.feature i, 
.info-block i {
    font-size: 35px;
    color: #ff7a00;
    margin-bottom: 20px;
}

.feature h3, 
.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
    position: relative;
}

.feature p, 
.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Responsive aanpassingen */
@media screen and (max-width: 1200px) {
    .page-hero h1, 
    .diensten-hero h1, 
    .opleidingen-hero h1, 
    .contact-hero h1,
    .about-hero h1,
    .over-ons-hero h1,
    .calamiteiten-hero h1 {
        font-size: 42px !important;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 992px) {
    .page-hero, 
    .diensten-hero,
    .opleidingen-hero,
    .contact-hero,
    .about-hero,
    .over-ons-hero,
    .calamiteiten-hero {
        padding: 100px 0 60px !important;
    }

    .opleidingen-hero {
        padding: 100px 0 60px !important;
        text-align: center !important;
        background-color: #000E87 !important;
        width: 100% !important;
    }
    
    .opleidingen-hero .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    
    .page-hero h1, 
    .diensten-hero h1,
    .opleidingen-hero h1,
    .contact-hero h1,
    .about-hero h1,
    .over-ons-hero h1,
    .calamiteiten-hero h1 {
        font-size: 40px !important;
    }

    .opleidingen-hero h1 {
        font-size: 38px !important;
        margin-bottom: 20px !important;
    }
    
    .opleidingen-hero p {
        font-size: 18px !important;
        max-width: 700px !important;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .page-hero, 
    .diensten-hero,
    .opleidingen-hero,
    .contact-hero,
    .about-hero,
    .over-ons-hero,
    .calamiteiten-hero {
        padding: 80px 0 50px !important;
    }
    
    .opleidingen-hero {
        padding: 80px 0 50px !important;
        text-align: center !important;
        background-color: #000E87 !important;
        width: 100% !important;
    }
    
    .opleidingen-hero .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    
    .page-hero h1, 
    .diensten-hero h1,
    .opleidingen-hero h1,
    .contact-hero h1,
    .about-hero h1,
    .over-ons-hero h1,
    .calamiteiten-hero h1 {
        font-size: 36px !important;
    }
    
    .opleidingen-hero h1 {
        font-size: 34px !important;
        margin-bottom: 15px !important;
    }
    
    .page-hero p, 
    .diensten-hero p,
    .opleidingen-hero p,
    .contact-hero p,
    .about-hero p,
    .over-ons-hero p,
    .calamiteiten-hero p {
        font-size: 18px !important;
    }
    
    .opleidingen-hero p {
        font-size: 18px !important;
        max-width: 90% !important;
    }
}

@media screen and (max-width: 576px) {
    .page-hero, 
    .diensten-hero,
    .opleidingen-hero,
    .contact-hero,
    .about-hero,
    .over-ons-hero,
    .calamiteiten-hero {
        padding: 60px 0 40px !important;
    }
    
    .opleidingen-hero {
        padding: 60px 0 40px !important;
        text-align: center !important;
        background-color: #000E87 !important;
        width: 100% !important;
    }
    
    .opleidingen-hero .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    
    .page-hero h1, 
    .diensten-hero h1,
    .opleidingen-hero h1,
    .contact-hero h1,
    .about-hero h1,
    .over-ons-hero h1,
    .calamiteiten-hero h1 {
        font-size: 30px !important;
    }
    
    .opleidingen-hero h1 {
        font-size: 30px !important;
        margin-bottom: 15px !important;
    }
    
    .page-hero p, 
    .diensten-hero p,
    .opleidingen-hero p,
    .contact-hero p,
    .about-hero p,
    .over-ons-hero p,
    .calamiteiten-hero p {
        font-size: 16px !important;
    }
    
    .opleidingen-hero p {
        font-size: 16px !important;
        max-width: 100% !important;
        padding: 0 10px !important;
    }
}

/* Extra specifieke stijl voor calamiteiten-hero om eventuele witruimte te verwijderen */
.calamiteiten-hero {
    margin-top: 0 !important;
    padding-top: 120px !important;
    padding-bottom: 70px !important;
    background-color: #000E87 !important;
    position: relative !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    z-index: 1 !important;
}

.calamiteiten-hero .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

.calamiteiten-hero:after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 30px !important;
    background: white !important;
    border-radius: 50% 50% 0 0 !important;
    transform: translateY(50%) !important;
    z-index: 10 !important;
}

@media screen and (max-width: 992px) {
    .calamiteiten-hero {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }
}

@media screen and (max-width: 768px) {
    .calamiteiten-hero {
        padding-top: 80px !important;
        padding-bottom: 50px !important;
    }
}

@media screen and (max-width: 576px) {
    .calamiteiten-hero {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }
} </pre></body></html>