.custom-card {
  background-color: #f1f4f8;
  border-radius: 12px;
  height: 100%;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
}

.custom-card h5 {
  color: #333;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.custom-card .text-success {
  color: #1bb55b !important;
}

.custom-card img.card-icon {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.custom-card hr {
  border-top: 1px solid #aaa;
  margin: 15px 0;
}

.custom-card .card-footer {
  font-size: 14px;
  color: #666;
}

.card-footer .arrow {
  font-size: 16px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.card-footer .arrow:hover {
  transform: translateX(4px);
}
