/* Styles spécifiques pour la page E5 */

/* Conteneur principal pour les blocs */
.e5-container {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}

/* Style des blocs */
.e5-block {
    width: 45%;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style pour l'image */
.e5-image {
    width: 300px;
    height: 350px;
    margin-bottom: 20px;
}

/* Style pour les boutons */
.e5-buttons {
    display: flex;
    flex-direction: column;
}

/* Style pour les boutons spécifiques à E5 */
.e5-button {
    display: inline-block;
    padding: 5px 10px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    margin-bottom: 5px;
}

.e5-button:hover {
    background-color: #000F5B;
}

/* Style des boutons généraux */
.bouton {
    background-color: #D4AF37;
    color: #fff;
    padding: 10px 15px; /* Réduire le padding */
    margin-top: 20px;
    margin: 0 10px; /* Ajouter une marge horizontale de 10px */
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bouton:hover {
    background-color: #B8860B;
}
