/* Style spécifique pour la page des conditions d'utilisation */
:root {
    --primary-color: #333333;
    --secondary-color: #666666;
    --accent-color: #000000;
    --background-color: #ffffff;
    --text-color: #333333;
    --border-color: #dddddd;
    --footer-bg: #f5f5f5;
    --footer-text: #333333;
    --footer-border: #dddddd;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

header {
    background-color: var(--background-color);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

header h1 {
    color: var(--primary-color);
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
}

nav ul li a:hover {
    color: var(--accent-color);
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin-bottom: 30px;
}

h2 {
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

p {
    color: var(--text-color);
    margin-bottom: 15px;
}

footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--footer-border);
    margin-top: 50px;
}

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

footer a:hover {
    color: var(--accent-color);
}

/* Styles pour les listes */
ul, ol {
    color: var(--text-color);
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

/* Styles pour les liens */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--accent-color);
}

/* Styles pour les sections importantes */
.important {
    background-color: #f9f9f9;
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
}

/* Styles pour les titres de section */
.section-title {
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 15px;
} 