/* Import d'une police moderne */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Reset et style global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f1e8;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header centré */
header {
    background: #f5f1e8;
    text-align: center;
    padding: 50px 20px;
}

.header-content h1 {
    font-size: 3rem;
    color: #222;
    font-weight: bold;
}

.header-content p {
    font-size: 1.5rem;
    color: #555;
}

/* Contenu principal */
main {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Pied de page toujours en bas */
footer {
    background: #de4238;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    margin-top: auto;
}