 /* Style similaire à la page 'À propos' */
 .section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #004d00;
    font-weight: bold;
    border: 2px solid #004d00;
    padding: 10px;
    border-radius: 5px;
    background-color: #e6ffe6;
    font-family: 'Arial', sans-serif;
}

.section-text {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-family: 'Georgia', serif;
}

.payment-info {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.donation-buttons {
    text-align: center;
    margin-top: 20px;
}

/* Galerie d'images */
.gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}
.gallery img {
    width: 30%;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 10px;
    border: 3px solid #004d00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Modal pour les images en grand format */
.modal-dialog {
    max-width: 800px;
}
.modal-body img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}