/* Fichier: Assets/stylesforterms.css */

.terms-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: #333;
}

/* Titre principal */
.terms-content h1 {
    font-size: 2.5em;
    color: #1a4d8c; /* Couleur principale */
    border-bottom: 2px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-align: center;
}

/* Date de mise à jour */
.terms-content .last-updated {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
}

/* Introduction */
.terms-content .introduction {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f7f7f7;
    border-left: 5px solid #e74c3c; /* Couleur d'accentuation */
}

/* Titres de section (H2) */
.terms-content h2 {
    font-size: 1.6em;
    color: #2c3e50;
    margin-top: 45px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* Paragraphes */
.terms-content p {
    margin-bottom: 20px;
    text-align: justify;
}

/* Listes (pour l'affiliation, par exemple) */
.terms-content ul {
    list-style-type: disc;
    margin-left: 25px;
    padding-left: 0;
    margin-bottom: 25px;
}

.terms-content ul li {
    margin-bottom: 10px;
}

/* Liens */
.terms-content a {
    color: #e74c3c; /* Couleur d'accentuation pour les liens */
    text-decoration: none;
}

.terms-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-container {
        margin: 20px auto;
        padding: 0 15px;
    }
    .terms-content h1 {
        font-size: 2em;
    }
    .terms-content h2 {
        font-size: 1.4em;
    }
}