/* 
 * Service Card Alignment Fix
 * Ensures consistent height and alignment for service cards
 */

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  justify-content: space-between;
}

.service-card h3 {
  flex-grow: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon {
  flex-grow: 0;
}

.service-price {
  margin-top: auto;
  padding-top: 12px !important;
  font-size: 18px !important;
  font-weight: bold;
  color: var(--secondary-color, #0056b3) !important;
}

/* Add visual separation between title and price */
.service-card::after {
  content: "";
  display: block;
  margin: 8px auto;
  width: 80%;
  height: 1px;
  background-color: #eee;
}

/* Fix responsive issues */
@media (max-width: 768px) {
  .service-card {
    min-height: 180px;
  }
}
