/* Custom styling for "Designed for Safety, Built for Learning" section */

/* Change feature titles to Urbanist font */
.tp-service-3-title {
  font-family: 'Urbanist', sans-serif;
}

/* Remove gradient bars above the features */
.tp-service-3-item::before {
  display: none; /* Hide the gradient bar */
}

/* Change section heading underbar to warm yellow */
.tp-service-3-heading {
  position: relative;
}

.tp-service-3-heading img {
  opacity: 0; /* Hide the original image */
}

.tp-service-3-heading::after {
  content: '';
  position: absolute;
  height: 4px;
  width: 100px;
  background-color: #FFD97E; /* Warm yellow color */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
