body {
    font-family: Arial, sans-serif;
    font-size: x-large;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    background-color: #343a40;
    color: white;
    padding: 1rem 0;
    text-align: center;
}
main {
    flex: 1; /* Permet d'étendre le contenu pour occuper tout l'espace disponible */
    padding-bottom: 2rem; /* Ajout d'un espace en bas pour éviter que le footer cache le contenu */
}
.faq, .articles-recents, .infos-legales, .newsletter {
    padding: 2rem;
}
.faq {
    background-color: #f8f9fa;
}
.faq h3, .articles-recents h3 {
    margin-top: 1.5rem;
}
.contact {
    background-color: #e9ecef;
}
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: relative; /* Footer collé au bas de la page si le contenu est insuffisant */
    width: 100%;
}
footer a {
    color: #ffc107;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.articles-recents article {
    margin-bottom: 2rem;
}
.articles-recents img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0.5rem 0;
}
.newsletter form {
    display: flex;
    gap: 0.5rem;
}
.newsletter input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.newsletter button {
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.newsletter button:hover {
    background-color: #0056b3;
}
