.impressum-section {
  height: auto;
  text-align: center;
  min-height: 100vh;
  padding-top: 0px;
  padding-bottom: 50px;
  background-color: #1E5F73;
  /* background-color: #173B3F; */
  /* background-color: black; */
  /* background-color: white; */
  /* background: linear-gradient(90deg, #23878e 0%, #0d2d2f 100%); */
  border-radius: 30px;
  /* margin-top: 90px; */
  /* scroll-margin-top: 90px; */
  /* padding-top: 60px; */
  margin-left: 20px;
  margin-right: 20px;
  align-content: center;
  /* align-content: center; */
  justify-items: center;
  /* border: solid 2px #d6be72; */
}

.impressum-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  height: auto;
  padding: 20px;
  padding-right: 30px;
  /* color: #E4EEF1; */
  color: #EADFC8;
  text-align: left;
  /* border: solid 2px #d6be72; */
}

.impressum-content h1 {
  /* text-shadow: none; */
  margin: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  /* border: solid 2px #d6be72; */
}

.impressum-content h2 {
  margin: 0;
  padding-top: 30px;
  padding-bottom: 10px;
  font-weight: 700;
  /* border: solid 2px #d6be72; */
}

.impressum-content a {
  background: linear-gradient(90deg, #D6BE72 0%, #A98A3C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.impressum-content p {
  margin: 0;
  /* padding-bottom: 10px; */
  line-height: 1.6em;
}

.back-button {
  position: fixed; /* или absolute */
  top: 145px;
  left: 100px;
  z-index: 1000;

  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;

  font-size: 26px;
  font-weight: bold;
  backdrop-filter: blur(6px);
}

.back-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

