/* Header */
.header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 100;
}

/* Inner Layout */
.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Block */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo Image */
.logo img {
  width: 80px;
  height: 80px;
}

/* Text neben Logo */
.logo-text {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* CTA Button */
.cta {
  font-size: 14px;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;

  background: #111827;
  color: #ffffff;
}

body {
  font-family: Arial, sans-serif;
  max-width: 900px;
  margin: auto;
  padding: 20px;
  line-height: 1.6;
}
h1 { font-size: 28px; }
h2 { margin-top: 40px; }
.cta {
  background: #000;
  color: #fff;
  padding: 12px 16px;
  display: inline-block;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 10px;
}
.box {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.footer {
  margin-top: 60px;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 14px;
  color: #6b7280;
}

.footer a {
  margin-left: 16px;
  text-decoration: none;
  color: #374151;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer a {
    margin-left: 10px;
  }
}

.content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
}

.content h1 {
  margin-bottom: 20px;
}

.content p {
  margin-bottom: 16px;
  line-height: 1.6;
}