body {
  font-family: Arial, sans-serif;
  padding: 12px 10px 0px;
  font-size: 14px;
  color: #555;
}

.faq-container {
  max-width: 600px;
  margin: auto;
}

.info-container {
  max-width: 600px;
  margin: auto;
  font-size: 16px;
}


.faq-question {
  padding: 0px;
  padding-left: 20px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  left: 5px;
  color: #647848;
}

.faq-question::before {
  content: '\25BA';
  font-size: 16px;
  position: absolute;
  top: 2px;
  left: -10px;
  transition: transform 0.3s ease-in-out;
}

.faq-question.active::before {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 5px;
  display: none;
  border-top: 1px solid #eee;
  font-size: 16px;
  font-weight: normal;
}

.contact-support-link {
  background-color: #647848;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 15px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.contact-support-link:hover {
  background-color: #8ED937;
}

@media (prefers-color-scheme: dark) {
  body {
    color: #ccc;
    background-color: black; /* Dark background color */
  }
  .faq-question {
    padding: 0px;
    padding-left: 20px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    left: 5px;
    color: #8ED937;
  }
}

.page-nav ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 15px 0;
}
.page-nav li::marker {
  color: #647848;
}
@media (prefers-color-scheme: dark) {
  .page-nav li::marker {
    color: #8ED937;
  }
}
.page-nav li {
  margin: 8px 0;
  font-size: 16px;
  text-transform: uppercase;
  color: inherit;
}
.page-nav a {
  text-decoration: underline;
  color: #647848;
}

@media (prefers-color-scheme: dark) {
  .page-nav a {
    color: #8ED937;
  }
}

/* iubenda privacy policy embed: the widget injects a #iubenda_policy wrapper
   inside a #iub-pp-container div and loads its own stylesheet that hard-codes
   light-mode colors via high-specificity ID selectors. Force readable colors
   when the user prefers dark mode. */
@media (prefers-color-scheme: dark) {
  #iub-pp-container,
  #iub-pp-container *,
  #iubenda_policy,
  #iubenda_policy * {
    color: #ccc !important;
    background-color: transparent !important;
    background-image: none !important;
    border-color: #444 !important;
  }
  #iub-pp-container a,
  #iub-pp-container a *,
  #iubenda_policy a,
  #iubenda_policy a * {
    color: #8ED937 !important;
  }
}
