/* Service Section */
.service-card {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Enhanced Learn More button hover effect */
.progress-learn-more {
  transition: all 0.3s ease;
}

/* Button hover effect when hovering over the service card */
.service-card:hover .progress-learn-more {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
  opacity: 0.95;
}

/* Also keep direct button hover for accessibility */
.progress-learn-more:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
  opacity: 0.95;
}

/* Service button specific chevron styling */
.service-button svg.faq-chevron {
  margin-left: 0 !important; /* Remove left margin */
  margin-right: 1rem !important; /* Set right margin to 1rem */
}

/* Service section heading text alignment */
.service-button .flex-1 {
  margin-left: -1.5rem !important; /* Increased leftward shift from -1.25rem */
}
