body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
.container {
    max-width: 800px;
    margin: auto;
}
.form-group {
    margin-bottom: 15px;
}
/* Ajout de styles pour les petits écrans */
    @media (max-width: 576px) {
.form-check {
    display: block; /* Afficher chaque form-check sur une ligne séparée */
    margin-bottom: 5px; /* Ajouter un peu d'espace entre les éléments */
}
}
label {
    display: block;
    margin-bottom: 5px;
}
input, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}
button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    margin-right: 10px;
}
.contract {
    margin-top: 30px;
    white-space: pre-line;
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #f9f9f9;
}
