.impressum-section {

  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.impressum-card {
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Top Accent Line */
.impressum-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  border-radius: 25px 25px 0 0;
  background: linear-gradient(90deg, #2b1f30, #d4af37);
}

/* Heading */
.impressum-card h2 {
  font-family: "Great Vibes", cursive;
  font-size: 42px;
  margin-bottom: 30px;
  color: #2b1f30;
}

/* Section Titles */
.impressum-block h5 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d4af37;
  margin-bottom: 10px;
  margin-top: 30px;
}

/* Text */
.impressum-block p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* Links */
.impressum-block a {
  color: #2b1f30;
  text-decoration: none;
  font-weight: 500;
}

.impressum-block a:hover {
  color: #d4af37;
}

/* Mobile */
@media (max-width: 768px) {
  .impressum-card {
    padding: 30px;
  }

  .impressum-card h2 {
    font-size: 32px;
  }
}