/**
 * Fichier: css/terms.css
 * Ajouté le: 2026-01-21 06:23:36
 */

/* Styles pour la page des Conditions Générales d'Utilisation */

/* Hero Section */
.terms-hero {
    background-color: var(--primary-color);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-date {
    font-size: 16px;
    opacity: 0.8;
}

/* Table des matières */
.terms-toc-section {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.terms-toc {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.terms-toc h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.terms-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 40px;
}

.terms-toc li {
    margin-bottom: 12px;
    break-inside: avoid;
}

.terms-toc a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-toc a:hover {
    color: var(--primary-color);
}

/* Contenu des CGU */
.terms-content-section {
    padding: 60px 0;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.terms-intro {
    margin-bottom: 40px;
    color: #444;
    line-height: 1.6;
}

.terms-article {
    margin-bottom: 50px;
}

.terms-article:last-child {
    margin-bottom: 0;
}

.terms-article h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.terms-article h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 25px 0 15px;
}

.terms-article p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

.terms-article ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-article li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #444;
}

.terms-article a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-article a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .terms-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .terms-toc ul {
        columns: 1;
    }
    
    .terms-content {
        padding: 25px 20px;
    }
    
    .terms-article h2 {
        font-size: 22px;
    }
    
    .terms-article h3 {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 28px;
    }
    
    .terms-hero {
        padding: 40px 0;
    }
    
    .terms-toc-section, .terms-content-section {
        padding: 30px 0;
    }
    
    .terms-content {
        padding: 20px 15px;
    }
}