/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body avec fond blanc et bleu */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #bbdefb 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Contenu principal */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* Container des mentions */
.mentions-container {
    background: white;
    max-width: 900px;
    width: 100%;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(25, 118, 210, 0.15);
    border: 2px solid #e3f2fd;
}

/* Titre principal */
.mentions-container h1 {
    color: #1976d2;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 3px solid #1976d2;
    padding-bottom: 15px;
}

/* Lien retour */
.back-link {
    text-align: center;
    margin: 20px 0 30px 0;
}

.back-link a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 5px;
    display: inline-block;
}

.back-link a:hover {
    background: #e3f2fd;
    color: #0d47a1;
}

/* Sections */
.mention-section {
    margin: 30px 0;
}

.mention-section h2 {
    color: #0d47a1;
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-left: 4px solid #1976d2;
    padding-left: 15px;
    background: linear-gradient(90deg, #e3f2fd 0%, transparent 100%);
    padding: 10px 15px;
    border-radius: 5px;
}

.mention-section h3 {
    color: #1565c0;
    font-size: 1.4rem;
    margin: 20px 0 10px 0;
    padding-left: 10px;
    border-left: 3px solid #64b5f6;
}

.mention-section p {
    margin: 10px 0;
    text-align: justify;
}

.mention-section ul {
    margin: 10px 0 10px 30px;
}

.mention-section li {
    margin: 5px 0;
}

.mention-section a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.mention-section a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* Strong (gras) */
strong {
    color: #0d47a1;
}

/* Date de mise à jour */
.update-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e3f2fd;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.mentions-footer {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    box-shadow: 0 -5px 20px rgba(25, 118, 210, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .mentions-container {
        padding: 25px;
    }

    .mentions-container h1 {
        font-size: 2rem;
    }

    .mention-section h2 {
        font-size: 1.5rem;
    }

    .mention-section h3 {
        font-size: 1.2rem;
    }
}

/* Animation au scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mention-section {
    animation: fadeInUp 0.5s ease-out;
}
