/* Réduction de la hauteur de la section hero pour securite.html */
body .simple-hero,
html .simple-hero {
    min-height: 250px !important;
    height: 250px !important;
    padding: 50px 0 !important;
}

body .simple-hero h1,
html .simple-hero h1 {
    font-size: 2rem !important;
    margin-bottom: 15px !important;
}

body .simple-hero p,
html .simple-hero p {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
}

/* Responsive */
@media (max-width: 768px) {
    body .simple-hero,
    html .simple-hero {
        min-height: 200px !important;
        height: 200px !important;
        padding: 40px 0 !important;
    }
    
    body .simple-hero h1,
    html .simple-hero h1 {
        font-size: 1.7rem !important;
    }
    
    body .simple-hero p,
    html .simple-hero p {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    body .simple-hero,
    html .simple-hero {
        min-height: 170px !important;
        height: 170px !important;
        padding: 35px 0 !important;
    }
    
    body .simple-hero h1,
    html .simple-hero h1 {
        font-size: 1.5rem !important;
    }
}
