/* Pricing section styles */
.pricing-section .section-header h3 i {
  margin-right: 10px;
  color: #16a34a; /* Green color for the dollar sign */
  font-size: 1.1em;
  animation: pulse-money 2s infinite;
}

@keyframes pulse-money {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
