/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  padding: 20px;
}

/* Container */
.impressum-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
.impressum-content h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #2c3e50;
}

.impressum-content h2 {
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #34495e;
}

/* Paragraphs & Links */
.impressum-content p {
  font-size: 1em;
  margin-bottom: 15px;
}

.impressum-content a {
  color: #2980b9;
  text-decoration: none;
}

.impressum-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .impressum-container {
    padding: 20px;
  }

  .impressum-content h1 {
    font-size: 2em;
  }

  .impressum-content h2 {
    font-size: 1.2em;
  }
}

/* Cookie info banner – shared style for legal pages */
.cookie-info-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  display: none;
  padding: 12px 16px;
  background: #111827;
  color: #e5e7eb;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.35);
}

.cookie-info-banner--visible {
  display: block;
}

.cookie-info-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-info-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-info-text a {
  color: #93c5fd;
  text-decoration: underline;
}

.cookie-info-text a:hover {
  color: #bfdbfe;
}

.cookie-info-button {
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.2);
  background: #f97316;
  color: #111827;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-info-button:hover {
  background: #fb923c;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .cookie-info-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-info-button {
    width: 100%;
    text-align: center;
  }
}
