/* ============================================
   GO NICO 65 - Legal Pages Styles
   Mentions légales, Politique de confidentialité, CGV
   ============================================ */

.legal-page {
    padding: 100px 0 60px;
    background: #f8f9fa;
}

.legal-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0, 33, 71, 0.1);
}

.legal-content h1 {
    font-family: 'Outfit', sans-serif;
    color: #002147;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.legal-content h2 {
    font-family: 'Outfit', sans-serif;
    color: #002147;
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-family: 'Outfit', sans-serif;
    color: #4FC3F7;
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-content li {
    line-height: 1.8;
    color: #333;
    margin-bottom: 8px;
}

.legal-content strong {
    color: #002147;
}

.legal-content a {
    color: #4FC3F7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #FF7043;
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #FF7043;
    font-weight: 600;
    text-decoration: none;
}

.back-link:hover {
    color: #002147;
}

.updated-date {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 30px;
}

.highlight-box {
    background: #e3f2fd;
    border-left: 4px solid #4FC3F7;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

/* Highlight box variant for CGV (orange) */
.highlight-box.warning {
    background: #fff3e0;
    border-left-color: #FF7043;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 80px 0 40px;
    }

    .legal-content {
        padding: 25px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.125rem;
    }
}
