/* Styles pour les pages légales */
.legal-section {
    position: relative;
    background-color: #f8f9fa;
}

.legal-content {
    margin-top: 20px;
}

.legal-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.legal-card-inner {
    padding: 40px;
    position: relative;
}

.legal-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.legal-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #444;
}

.legal-card p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.legal-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-card ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.legal-card strong {
    font-weight: 600;
    color: #444;
}

.legal-update {
    margin-top: 30px;
    font-style: italic;
    color: #777;
    text-align: right;
}

@media (max-width: 767px) {
    .legal-card-inner {
        padding: 25px;
    }
    
    .legal-card h2 {
        font-size: 22px;
    }
    
    .legal-card h3 {
        font-size: 18px;
    }
}

/* Styles pour le fil d'Ariane dans les pages légales */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item:before {
    content: "/";
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
    text-decoration: none;
}

.breadcrumb .active {
    color: #fff;
    font-weight: 500;
} 