/* Allgemeine Styles für das Impressum */
.impressum-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(images/Büroflur.jpg) no-repeat center/cover;
  padding: 40px;
}

.impressum-box {
  background: white;
  padding: 40px;
  max-width: 900px;
  min-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-align: left;
}

/* Zurück-Link */
.backlink {
  display: inline-block;
  margin-bottom: 15px;
  color: #007bff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.backlink:hover {
  text-decoration: underline;
}

/* Überschrift */
h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

/* Impressum-Abschnitte */
.impressum-punkt {
  margin-bottom: 15px;
}

.impressum-punkt h3 {
  font-size: 20px;
  color: #444;
  margin-bottom: 5px;
}

.impressum-punkt p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .impressum-box {
    width: 90%;
    padding: 20px;
  }

  h2 {
    font-size: 24px;
  }

  .impressum-punkt h3 {
    font-size: 18px;
  }

  .impressum-punkt p {
    font-size: 14px;
  }
}