.telephone-icon {
  width: 40px;
  height: 40px;
  background-color: #700046;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.telephone-icon img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.telephone-icon:hover {
  transform: scale(1.05);
}

.telephone-icon:hover img {
  transform: scale(1.1);
}

.icon-row {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.icon-row .telephone-icon {
  margin-right: 10px; /* Abstand zwischen Icon und Text */
}
