.continue-journey-arrow {
  position: relative;
  display: inline-block;
  background: #fff;
  color: #3b82f6; /* Tailwind blue-500 */
  border-radius: 2em;
  padding: 0.75em 2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-size: 1.1em;
  text-align: center;
}

.continue-journey-arrow::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px; /* Adjust based on triangle size */
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #fff; /* Same as bubble background */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}
