#logo img {
  width: 80px;
}

.card-custom {
  background: #1a86c5;
  color: #fff;
  cursor: pointer;
  border: 1px solid #206fb4;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px 8px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.card-custom:hover {
  transform: translateY(0px) scale(1.001);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.card-custom .icon {
  font-size: 2.5rem;
}

.card-custom h5 {
  color: #fff;
  line-height: 1.75rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
}
.service-points {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: center;
}
.service-points h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-points .icon {
  font-size: 2.5rem;
  margin-bottom: 1.75rem;
  margin-top: 1.75rem;
}
.service-points .icon a {
  color: #000000;
  text-decoration: none;
}

