.card-content {
  max-height: 80px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.service-card.is-expanded .card-content {
  max-height: 100%;
}

.expand-btn {
  cursor: pointer;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-top: 10px;
}

.expand-btn svg {
  transition: transform 0.3s ease;
}

.service-card.is-expanded .expand-btn svg {
  transform: rotate(180deg);
}

.expand-btn {
  margin-top: auto;
}

