.logo {
    width: 20vw; /* 10% de la largeur de l'écran */
    max-width: 200px; /* Limite la taille max */
    min-width: 50px; /* Taille minimale */
    height: auto; /* Garde les proportions */
}
.img_don {
    border: 1px solid #26b3a9;
}
.text-color-webdia {
    color: #26b3a9;
}
/* Adapter la couleur du texte selon le logo */
.header-title {
    color: #26b3a9; /* Remplace par la couleur principale de ton logo */
    font-weight: bold;
    <!-- text-transform: uppercase; -->
}

.row {
    padding: 10px
}

.don-option {
    cursor: pointer;
}

.don-option input {
    display: none;
}

.don-option label {
    display: block;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
}

.don-option input:checked + label {
    background-color: #26b3a9;
    color: white;
    border-color: #26b3a9;
}

.don-input {
    display: none;
}

.don-option input#custom:checked ~ .don-input {
    display: block;
}

/* Bouton personnalisé */
.btn-donation {
    background-color: #26b3a9;
    border-color: #26b3a9;
    color: white;
    font-weight: bold;
}

.btn-donation:hover {
    color: white;
    background-color: #1a8e81;
    border-color: #1a8e81;
}

.email {
    text-align: center;
    margin-top: -50px;
}

.email a {
    color: white;
    text-decoration: none; /* Désactive le soulignement classique */
    border-bottom: 2px solid white; /* Ajoute un soulignement personnalisé */
    padding-bottom: 2px; /* Ajuste l'espace entre le texte et la ligne */
}
