/* Section Workflow */
#workflowcontainer {
    display: flex;
    background-color: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(16px);
    box-shadow: 0 0.3em 1em rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

/* Disposition horizontale pour les grands écrans */
@media (min-width: 768px) {
    #workflowcontainer {
        flex-direction: row;
        justify-content: space-around; /* Espace égal entre les éléments */
        width: 100%;
        max-width: 1000px;
        padding: 20px;
        margin: 1em auto;
    }
}

/* Disposition verticale pour les petits écrans */
@media (max-width: 767px) {
    #workflowcontainer {
        flex-direction: column;
        align-items: center; /* Centrer les éléments */
        width: 95%;
        margin: 1em auto;
    }
}


/* Container des étapes */
.step {
    flex: 1;
    max-width: 300px;
    margin: 10px;
    padding: 15px;
    background-color: rgba(8, 8, 8, 0.8);
    border-radius: 8px;
}

/* Titre des étapes */
.step-title {
    font-weight: bold;
    font-size: 1.2em;
    color: #5a67d8;
    margin-bottom: 10px;
}

/* Détails des étapes */
.step-details {
    color: #e0e0e0;
}

    .step-details p {
        margin: 8px 0;
    }

/* Section Contact */
#contactformcontainer {
    width: 95%;
    max-width: 750px; /* Limite la taille à 750px */
    padding: 20px;
    margin: 1em auto 10em auto;
    background-color: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(16px);
    box-shadow: 0 0.3em 1em rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

@media (max-width: 767px) {
    #contactformcontainer {
        max-width: 90%;
    }
}

/* Formulaire de contact */
form {
    display: flex;
    flex-direction: column;
}

/* Labels des champs de formulaire */
label {
    margin-bottom: 5px;
    font-weight: bold;
}

textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    resize: vertical; /* Limite le redimensionnement à la verticale */
    min-height: 150px; /* Facultatif : définit une hauteur minimale */
    max-height: 450px;
}


/* Champs de saisie et texte */
input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}