#contact {
  background: #313552;
  color: white;
  padding: 40px 20px; /* Abstand nach innen */
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* Ermöglicht flexibles Verhalten für kleinere Geräte */
  gap: 20px; /* Abstand zwischen den Kacheln */
}

#contact-icons-2,
.impressum {
  flex: 1; /* Gleiche Breite für beide Sektionen */
  max-width: 48%; /* Maximale Breite für Desktop */
  min-width: 300px; /* Mindestbreite für kleine Geräte */
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px; /* Abstand zwischen den Buttons */
  margin-bottom: 20px;
}

.contact-icon {
  background: #1e1e2f;
  color: white;
  flex: 1; /* Gleiche Breite für alle Buttons */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  font-family: inherit;
}

.contact-icon i {
  margin-right: 10px; /* Platz für Icons */
}

.contact-icon:hover {
  background: #48e5c2;
  transform: scale(1.05); /* Hover-Effekt */
  color: black;
}

.copy-icon {
  border: none;
  cursor: pointer;
}

.impressum {
  text-align: left;
}

.impressum h2 {
  color: #48e5c2;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.impressum p {
  margin: 5px 0;
  line-height: 1.5;
  font-size: 0.9rem;
}

.impressum h4 {
  margin: 15px 0 5px;
  font-size: 1rem;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column; /* Sektionen untereinander */
  }

  #contact-icons-2,
  .impressum {
    max-width: 100%; /* Volle Breite */
    margin-bottom: 20px;
    text-align: center;
  }

  .contact-row {
    flex-direction: column; /* Buttons untereinander */
  }

  .contact-icon {
    width: 100%; /* Volle Breite für mobile Geräte */
  }
}
