.full-width {
  width: 100%;
  height: auto;
}

/* Beispiel: Abstände zwischen den Spalten */
.col-md-4 {
  padding: 15px;
}

/* Beispiel: Hintergrundfarbe für die Spalten */
.col-md-4 {
  background-color: #f8f9fa;
  margin-bottom: 20px;
  border-radius: 5px;

}

.icon-link {
  color: #fff; /* Weiß für dunkle Hintergründe */
  font-size: 28px;
  margin: 0 10px;
  transition: color 0.3s;
}

.icon-link:hover {
  color: #ff6b6b; /* Rot beim Hovern */
}

/* Pulsation für alle Icons */
.fa-pulse {
  animation: fa-spin 2s infinite;
}