/* Impressum Page Styles */
.impressum-main {
  margin: 0;
  padding: 32px 20px;
}

.impressum-content {
  max-width: 1280px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

.impressum-section {
  background: #ededed;
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  color: #222;
}

.impressum-section:last-child {
  margin-bottom: 0;
}

.impressum-section h2 {
  color: var(--primary, #202a45);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 0;
  border-bottom: 2px solid var(--accent, #e8eef7);
  padding-bottom: 0.5rem;
}

.impressum-section h3 {
  color: var(--primary, #202a45);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.impressum-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.impressum-section p:last-child {
  margin-bottom: 0;
}

.impressum-section strong {
  color: var(--primary, #202a45);
  font-weight: 600;
}

.impressum-section a {
  color: var(--primary, #202a45);
  text-decoration: none;
}

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

/* Responsive Styles */
@media (max-width: 900px) {
  .impressum-main {
    padding: 24px 16px;
  }
  
  .impressum-section {
    padding: 24px;
    margin-bottom: 24px;
  }
  
  .impressum-section h2 {
    font-size: 1.3rem;
  }
  
  .impressum-section h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .impressum-content {
    font-size: 1rem;
  }
  
  .impressum-section {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .impressum-section h2 {
    font-size: 1.2rem;
  }
  
  .impressum-section h3 {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}
