.department-learn-more {
  text-align: center; 
}

.learn-more {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 30px;
  background-color: #449cbe;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.learn-more:hover {
  transform: scale(1.1);
  background-color: #add1e0;
}

/* Make entire card clickable */
.info-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Card base */
.info-card {
  position: relative;
  padding: 24px;
  border-radius: 12px;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.info-card-link:hover .info-card {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA text */
.whatsapp-cta {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: #ffffff; /* WhatsApp green */
}

/* Ensure overlays don’t block clicks */
.info-card::before,
.info-card::after {
  pointer-events: none;
}
