/* ==========================================================================
   Legal Pages (Impressum, Datenschutz, AGB)
   ========================================================================== */

/* Contact Section */
.content-section {
  padding-top: 0px;
}

.legal-content {
  padding: var(--spacing-lg) 0;
  background-color: var(--color-bg-dark);
}

.legal-intro {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.legal-section {
  margin-bottom: var(--spacing-md);
}

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

.legal-section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-light);
}

.legal-section p {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

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

.legal-section ul {
  margin: var(--spacing-sm) 0;
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

.legal-section a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-section a:hover {
  color: var(--color-text-light);
  text-decoration: underline;
}

/* Impressum Card */
.impressum-card {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-4xl);
}

.impressum-card__logo {
  width: 180px;
  flex-shrink: 0;
}

.impressum-card__title {
  margin-bottom: 0.5rem;
}

.impressum-card__content p {
  margin: 0;
}

.impressum-card__content p + p {
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-content {
    padding: var(--spacing-md) 0;
  }

  .legal-section h2 {
    font-size: 1.25rem;
  }

  .impressum-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-2xl);
  }
}
