.footer-link-section {
  padding: 40px 0;
}

.footer-info-text {
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-line; /* respeta los saltos de línea del textarea */
}

.accordion-button {
  font-weight: 600;
}

/* 🟩 Línea decorativa debajo de los títulos principales */
.footer-link-section h5 {
  position: relative; /* Necesario para ubicar el ::after */
  display: inline-block; /* Asegura que la línea se adapte al ancho del texto */
  font-family: "NeoSansSTD", sans-serif;
  font-size: 2.5rem;
}

/* 🧡 Línea degradada */
.footer-link-section h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px; /* separación entre el texto y la línea */
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}