/* ===== GLOBAL ===== */
body {
  font-family: "Montserrat", sans-serif;
}

/* ===== HERO ===== */
.impressum-hero {
  padding: 120px 20px 60px;
  background: #edeff4;
  text-align: center;
}

.impressum-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.impressum-hero p {
  color: #666;
  font-size: 1rem;
}

/* ===== CONTENT ===== */
.impressum-content {
  padding: 60px 20px;
  background: white;
}

.impressum-content .container {
  max-width: 900px;
  margin: auto;
}

/* Überschriften */
.impressum-content h2 {
  margin-bottom: 20px;
}

.impressum-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.impressum-content h4 {
  margin-top: 20px;
}

/* Text */
.impressum-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Links */
.impressum-content a {
  color: #c40000;
  text-decoration: none;
}

.impressum-content a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .impressum-hero h1 {
    font-size: 2rem;
  }

}