:root {
    --primary-color: #0056b3; /* Bleu médical / Tech */
    --secondary-color: #f0f4f8; /* Gris très clair pour le fond */
    --hover-color: #023d7c;
    --text-color: #333;
    --accent-color: #e37d24; /* Orange pour les boutons d'action */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    display: flex;             /* Transforme la page en boîte flexible */
    flex-direction: column;    /* Organise les éléments (header, contenu, footer) en colonne */
    min-height: 100vh;
}


.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

/* La règle essentielle pour tous les sites modernes ! */

.logo img {
    height: 80px;
}