html, body {
  margin: 0;
  padding: 0;
  background: #f6f8fa;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #222;
  min-height: 100%;
}

.agb-container {
  max-width: 680px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(50, 70, 90, 0.07);
  padding: 2.5rem 2rem;
}

.agb-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.agb-header h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #17223b;
}

.agb-subtitle {
  font-size: 1.1rem;
  color: #586069;
  margin-bottom: 0.3rem;
}

.agb-section {
  margin-bottom: 2.1rem;
}

.agb-section h2 {
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 0.48rem;
  color: #23395d;
}

.agb-section p, .agb-section address {
  font-size: 1rem;
  line-height: 1.7;
}

.agb-legal-info address {
  font-style: normal;
}

.agb-footer {
  text-align: center;
  font-size: .95rem;
  color: #666a;
  margin-top: 2.5rem;
}

a {
  color: #2a5eea;
  text-decoration: underline;
}
a:hover {
  color: #2151b5;
}

@media (max-width: 600px) {
  .agb-container {
    border-radius: 0;
    box-shadow: none;
    padding: 1.3rem 0.15rem;
    margin: 0;
  }
  .agb-header h1 {
    font-size: 1.45rem;
  }
  .agb-section h2 {
    font-size: 0.99rem;
  }
  .agb-section, .agb-header {
    margin-bottom: 1.1rem;
  }
}

/* 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;
  }
}
