/* Styles de base pour la page Mentions Légales */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    padding: 1rem 2rem;
    background-color: #343a40;
}

.navbar-brand {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.nav-custom {
    color: #ddd !important;
    margin: 0 10px;
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-custom:hover,
.nav-custom.active {
    background-color: #0d6efd;
    color: white !important;
}

.mentions-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.card {
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 40px;
}

.card-title {
    font-size: 2rem;
    color: #333;
    font-weight: bold;
}

.card-text a {
    color: #0d6efd;
    text-decoration: none;
}

.card-text a:hover {
    text-decoration: underline;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 20px;
}

footer .footer-mention {
    color: #ddd;
    text-decoration: none;
}

footer .footer-mention:hover {
    color: #0d6efd;
}

.text-muted {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .card-body {
        padding: 20px;
    }
}
