.card {
  transition: transform 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-5px);
}

.impact-stat h3 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--malagasy-red);
}

.impact-stat p {
  font-size: 1.2rem;
  color: var(--malagasy-green);
}

.figure-caption {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .impact-stat h3 {
    font-size: 2.5rem;
  }
  
  .figure-caption {
    font-size: 0.85rem;
  }
}