.page-header {
  background: #f3f3f3;
  padding: 2rem 1rem 1rem;
}

.page-header h1 {
  margin: 0;
  font-size: 2rem;
  color: var(--primary-color);
}

.breadcrumb {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
}

.page-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding: 0 1rem;
}

.page-content h2,
.page-content h3 {
  color: var(--primary-color);
  margin-top: 1.5rem;
}

.page-content p {
  margin-bottom: 1rem;
  line-height: inherit;
}

.button-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.email-button {
  background: #229954;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.email-button:hover {
  background: #1a7e43;
  color: white;
  text-decoration: none;
}

.fb-button {
  background: #229954;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.4rem;
  gap: 0.4rem;
  cursor: pointer;
}

.fb-button:hover {
  background: #1a7e43;
  color: white;
  text-decoration: none;
}

.fb-button .social-icon {
  fill: white;
  height: 20px;
  width: 20px;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #229954;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #1a7e43;
  transform: scale(1.05);
  color: white;
  text-decoration: none;
}

.moonlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;   /* ← Grenze die Gesamtbreite ein */
  margin: 0 auto;       /* ← Zentriert den Grid-Container */
  padding: 0 1rem;      /* ← Etwas Luft links und rechts */

}

.moonlight-block {
  background: #f3f3f3;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  width: 100%; /* Wichtig! Kein max-width hier */
  box-sizing: border-box;
}

.moonlight-block i {
  font-size: 2.5rem;
  color: gray !important;
  margin-bottom: 1rem;
}

.moonlight-block h4 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.moonlight-block p.normal-text,
.moonlight-block p.easy-text {
  text-align: left;
}

@media (max-width: 768px) {
  .page-content {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .breadcrumb {
    font-size: 0.85rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .moonlight-grid {
    grid-template-columns: 1fr;
  }

  .page-wrapper,
  .page-content {
    padding: 0;
    margin: 0;
  }

}