/* Page de politique de confidentialité MeetCraft */

.legal-container {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header de la page */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2e549b 0%, #1c306d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #2e549b 0%, #1c306d 100%);
    border-radius: 2px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 400;
    margin-top: 1rem;
}

/* Contenu principal */
.legal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.legal-content:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Introduction */
.legal-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.legal-intro p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    font-weight: 500;
}

/* Sections légales */
.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #2e549b 0%, #1c306d 100%);
    border-radius: 2px;
}

.legal-section p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

/* Informations de l'entreprise */
.company-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.company-info p {
    margin-bottom: 0.5rem;
    color: #0c4a6e;
    font-size: 0.95rem;
    line-height: 1.6;
}

.company-info p:last-child {
    margin-bottom: 0;
}

.company-info strong {
    color: #0c4a6e;
    font-weight: 600;
}

/* Listes */
.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.legal-section li:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: #1e293b;
    font-weight: 600;
}

/* Liens */
.legal-section a {
    color: #2e549b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-section a:hover {
    color: #1c306d;
    border-bottom-color: #1c306d;
}

/* Footer de la page */
.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2e549b;
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #2e549b;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: white;
}

.back-link:hover {
    color: white;
    background: #2e549b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 84, 155, 0.3);
}

.back-link i {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-wrapper {
        padding: 0 0.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .company-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        padding-left: 0.75rem;
    }
    
    .section-title::before {
        width: 3px;
        height: 20px;
    }
    
    .back-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .company-info {
        padding: 0.75rem;
    }
    
    .company-info p {
        font-size: 0.9rem;
    }
} 