/* Couleurs du drapeau français et ajout du violet */
:root {
    --blue: #0055A4;
    --white: #FFFFFF;
    --red: #EF4135;
    --light-gray: #F9F9F9;
    --dark-gray: #333333;
    --violet: #6A0DAD; /* Nouveau violet pour le texte */
}

/* Reset de base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--violet); /* Texte principal en violet */
    background-color: var(--light-gray);
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 8px solid var(--blue);
    border-bottom: 8px solid var(--red);
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--blue);
}

.subtitle {
    font-size: 1.2em;
    font-style: italic;
    color: var(--red);
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 5px;
    color: var(--blue);
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 5px;
}

a {
    color: var(--red);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

blockquote {
    margin: 20px;
    padding: 15px;
    background: var(--white);
    border-left: 4px solid var(--blue);
    font-style: italic;
    color: var(--violet); /* Blockquotes aussi en violet */
}

footer {
    font-size: 0.9em;
    color: var(--violet); /* Footer en violet */
    border-top: 4px solid var(--red);
    padding-top: 20px;
    text-align: center;
    background: var(--white);
}

footer p {
    line-height: 1.4;
}

