.info-card {
  border: 1px solid black;
  border-radius: 10px;
  background-color: white;
  color: black;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  font-size: 12px;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}