/* Mentions légales CSS */
.mentions-legales {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.mentions-legales h1 {
    color: #05448a;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eaeaea;
    text-align: center;
}

.mentions-legales h2 {
    color: #05448a;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eaeaea;
}

.mentions-legales h3 {
    color: #0566d2;
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.mentions-legales h4 {
    color: #0566d2;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    font-style: italic;
}

.mentions-legales p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.mentions-legales ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.mentions-legales li {
    margin-bottom: 0.5rem;
    position: relative;
}

.mentions-legales a {
    color: #0566d2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mentions-legales a:hover {
    color: #05448a;
    text-decoration: underline;
}

.mentions-legales section {
    margin-bottom: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mentions-legales {
        padding: 1.5rem;
    }

    .mentions-legales h1 {
        font-size: 1.8rem;
    }

    .mentions-legales h2 {
        font-size: 1.5rem;
    }

    .mentions-legales h3 {
        font-size: 1.3rem;
    }
}

/* Print styles */
@media print {
    .mentions-legales {
        box-shadow: none;
        max-width: 100%;
        padding: 0;
    }

    .mentions-legales a {
        color: #333;
        text-decoration: none;
    }
}