.realisation-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Légère ombre */
    margin-bottom: 50px;
}

/* Titre principal en haut */
.header-titre {
    border-bottom: 3px solid #324269; /* Bleu Bootstrap */
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.header-titre h1 {
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin-top: 0;
}

.header-titre .subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

/* Sections (Contexte, Technique, Bilan) */
.section-box {
    margin-bottom: 40px;
}

/* Titres des sections avec barre bleue à gauche */
.section-box h3 {
    color: #324269;
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 5px solid #324269;
    padding-left: 15px;
}

/* Style des images de preuve */
.img-preuve {
    width: 100%;
    max-width: 800px; /* Empêche l'image d'être trop géante */
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    display: block;
    margin: 20px auto; /* Centré horizontalement */
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}


/* Bouton retour */
.btn-retour {
    margin-bottom: 20px;
    border-radius: 30px; /* Bouton arrondi */
    padding-left: 20px;
    padding-right: 20px;
}