/* Global Styles */
body {
  margin: 0;
  padding: 0;
  background-color: #e4bce3;
  color: #000;
  font-family: "Kalinga", sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header, Footer & Navigation */
header,
footer {
  text-align: center;
  padding: 10px 0;
}

header h1 {
  margin: 0;
  padding-bottom: 10px;
}

nav {
  margin-bottom: 20px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list li {
  margin: 0 10px;
}

.nav-list li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  padding: 8px 12px;
}

/* Überschriften */
h1,
h2,
h3,
h4 {
  text-align: center;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  .nav-list {
    flex-direction: column;
  }
  .nav-list li {
    margin: 5px 0;
  }
}



/* Modernisiertes FAQ-Accordion */
.accordion {
  position: relative;
  background-color: #f8e5f8;
  color: #000;
  cursor: pointer;
  padding: 18px 20px;
  width: 100%;
  border: none;
  border-radius: 8px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion:hover {
  background-color: #e4bce3;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.accordion::after {
  content: "＋";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.accordion.active {
  background-color: #e4bce3;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.accordion.active::after {
  content: "−";
  transform: rotate(180deg);
}

.panel {
  background-color: #fff;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  border-radius: 0 0 8px 8px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
  margin-bottom: 10px;
}
.panel p {
  margin: 15px 0;
  line-height: 1.5;
  padding: 0 20px 15px;
}
