#privacy-policy {
  margin: 20px auto;
}

.privacy-kachel {
  background: #313552;
  color: #f4f4f9;
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  max-height: 80px; /* Standardhöhe für geschlossene Kachel */
  opacity: 0.8;
  position: relative;
  width: 100%;
  overflow: hidden; /* Verhindert, dass Inhalt herausragt */
}

.privacy-kachel h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #48e5c2;
}

.privacy-kachel .privacy-content {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  max-height: 0;
  overflow: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease, max-height 0.5s ease;
}

.privacy-kachel.active {
  max-height: 100%; /* Höhe im geöffneten Zustand */
  opacity: 1;
}

.privacy-kachel.active .privacy-content {
  opacity: 1;
  transform: scaleY(1);
  max-height: 100%;
  overflow-y: auto; /* Scrollbar aktivieren, wenn der Inhalt zu groß ist */
  padding: 10px;
}

/* Styling für die Scrollbar */
.privacy-kachel .privacy-content::-webkit-scrollbar {
  width: 8px;
}

.privacy-kachel .privacy-content::-webkit-scrollbar-thumb {
  background-color: #48e5c2;
  border-radius: 4px;
}

.privacy-kachel .privacy-content::-webkit-scrollbar-track {
  background: #27293d;
}

/* Responsive Anpassungen */
@media screen and (max-width: 600px) {
  .privacy-kachel {
    max-width: 100%;
    margin: 0 auto;
  }

  .privacy-kachel h3 {
    font-size: 1.2rem;
  }

  .privacy-kachel.active {
  }

  .privacy-kachel.active .privacy-content {
    overflow-y: auto;
  }
}
