.full-width-image {
    width: 100%; /* Prend toute la largeur disponible */
    height: auto; /* Conserve les proportions */
}

.h1-center {
    text-align: center;
}

.h2-center {
    text-align: center;
}

.btn-prestations-container {
    display: flex;
    justify-content: center; /* Centre le bouton horizontalement */
    margin-top: 20px; /* Ajoute un peu d’espace au-dessus */
}

.btn-prestations {
    background-color: #3C97C4;
    color: white;
    font-size: 1.2rem;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
    width: fit-content; /* Ajuste la taille du bouton à son contenu */
}

.btn-prestations:hover {
    background-color: #347a9b; /* Bleu plus foncé au survol */
}

.full-width-line {
    width: 100%; /* Prend toute la largeur */
    border: none;
    height: 2px; /* Épaisseur de la ligne */
    background-color: #000; /* Couleur de séparation */
    margin: 30px 0; /* Ajoute un espace avant et après */
}

.text-container {
    max-width: 80%; /* Limite la largeur à 80% de la page */
    margin: 0 auto; /* Centre automatiquement le texte */
    padding: 20px; /* Ajoute un espace interne */
}

@media (min-width: 992px) {
    .full-width-image {
        width: 100%;
        height: 600px; /* Ajuste la hauteur */
        object-fit: cover; /* Rognage automatique */
    }
}
