/* Réinitialisation et style de base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
    padding: 20px 0;
}

/* Conteneur principal */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* En-tête */
header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    color: #102a43;
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    color: #627d98;
    font-size: 1.1em;
}

/* Cartes (sections) */
.card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card h2 {
    color: #0b69a3;
    font-size: 1.8em;
    margin-bottom: 5px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.date {
    font-size: 0.9em;
    color: #829ab1;
    margin-bottom: 20px;
}

.card h3 {
    color: #102a43;
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
}

.card p, .card ul {
    margin-bottom: 15px;
}

.card ul {
    padding-left: 20px;
}

/* Liens (notamment l'email) */
a {
    color: #0b69a3;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Pied de page */
footer {
    text-align: center;
    margin-top: 40px;
    color: #627d98;
    font-size: 0.9em;
}