/* Style pour la Section 9 */
.section9-container {
    padding: 4rem 1rem;
    background-color: #f9fafb;
}

.stat-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.province-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #f3f4f6;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    border-left: 4px solid #007FFF; /* Bleu RDC */
}

.province-name {
    font-weight: 700;
    color: #1f2937;
}

.province-count {
    background-color: #ef4444; /* Rouge Coordination */
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 800;
}