/* Impressum specific styles */

/* Style for h3 in impressum sections */
section h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent-end);
}

.navigation-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-mid));
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 204, 0.3);
}

.back-link:hover {
  box-shadow: 0 6px 20px rgba(255, 0, 204, 0.4);
  background: linear-gradient(135deg, var(--accent-mid), var(--accent-end));
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .impressum-contact {
    padding: 1rem;
    margin: 0.5rem 0;
  }
  
  .navigation-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}