body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main {
    flex: 1;
}

.donation-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 2rem; /* Ajout d'un espacement en bas */
}

.donation-section .title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.donation-section .message {
    margin-bottom: 2rem;
    color: #666;
}

/* Style pour la section RIB */
.rib-section {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rib-section h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.rib-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rib-section ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
   }

.rib-section p {
    text-align: center;
    color: #666;
}

/* Style pour la section Leetchi */
.leetchi-section {
    text-align: center;
    margin-top: 2rem;
}

.leetchi-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffcc00; /* Couleur principale harmonisée */
    color: #333333; /* Couleur du texte */
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

.leetchi-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #f1c40f; /* Couleur inversée au survol */
    color: #ffffff; /* Texte blanc au survol */
}