/* ============================================
   Styles pour les pages légales - Best Lens
   ============================================ */

.legal-content {
    color: #374151; /* gray-700 */
}

.dark .legal-content {
    color: #cbd5e1; /* slate-300 */
}

/* Titres H2 */
.legal-content h2 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700; /* font-bold */
    color: #15264c;
    margin-top: 2rem; /* mt-8 */
    margin-bottom: 1rem; /* mb-4 */
    border-left: 4px solid #26a7e0;
    padding-left: 1rem; /* pl-4 */
    padding-top: 0.5rem; /* py-2 */
    padding-bottom: 0.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.dark .legal-content h2 {
    color: #f1f5f9; /* slate-100 */
}

/* Titres H3 */
.legal-content h3 {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    color: #15264c;
    margin-top: 1.5rem; /* mt-6 */
    margin-bottom: 0.75rem; /* mb-3 */
}

.dark .legal-content h3 {
    color: #e2e8f0; /* slate-200 */
}

/* Paragraphes */
.legal-content p {
    font-size: 1rem; /* text-base */
    line-height: 1.75; /* leading-relaxed */
    margin-bottom: 1rem; /* mb-4 */
}

/* Listes */
.legal-content ul,
.legal-content ol {
    margin-top: 1rem; /* my-4 */
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content ul {
    list-style-type: disc;
}

.legal-content ol {
    list-style-type: decimal;
}

.legal-content li {
    font-size: 1rem; /* text-base */
    margin-bottom: 0.5rem; /* space-y-2 */
    padding-left: 0.5rem;
}

/* Strong/Bold */
.legal-content strong {
    font-weight: 600; /* font-semibold */
    color: #15264c;
}

.dark .legal-content strong {
    color: #f1f5f9; /* slate-100 */
}

/* Liens */
.legal-content a {
    color: #26a7e0;
    font-weight: 500; /* font-medium */
    text-decoration: none;
    transition: all 0.2s;
}

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

/* Responsive */
@media (max-width: 640px) {
    .legal-content h2 {
        font-size: 1.125rem; /* text-lg sur mobile */
        margin-top: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1rem; /* text-base sur mobile */
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 0.9375rem; /* Légèrement plus petit sur mobile */
    }
}
