/* Ajoute ce CSS dans ton fichier de styles principal */

/* Centrage du contenu principal */
.introduction {
    background: #f3f3f3;
    padding: 32px 0 32px 0;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 1px;
    margin-top: 48px; /* Ajout du margin-top */
}

.valid_motif {
    position: absolute;
    left: 40px;
    top: 300px; /* Plus bas qu'avant */
    background: #f3f3f3;
    border-radius: 4px;
    width: 240px;
    padding: 10px 0 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.valid_motif h2 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.valid_motif ul {
    list-style: disc inside;
    padding-left: 16px;
    font-size: 1rem;
}

.buttons_redirection {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligne à droite */
    justify-content: center;
    min-height: 60vh;
    gap: 48px;
    position: relative;
    right: 10vw; /* Décale vers le centre-droit, ajustez la valeur si besoin */
}

.buttons_redirection button {
    background: #1a3e6e;
    color: #fff;
    border: none;
    border-radius: 4px;
    width: 600px;
    height: 160px;
    font-size: 2rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
}

.buttons_redirection button:hover {
    background: #244d8c;
}

.buttons_redirection a {
    color: #fff;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.button-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    display: block;
}