/* FAQ Expandable Section Styles - Matching Cactus Theme */
.faq-expandable {
  margin: 1.5rem 0;
  border: 1px solid rgba(43, 188, 138, 0.3);
  border-radius: 4px;
  background: rgba(43, 188, 138, 0.05);
  transition: all 0.2s ease;
}

.faq-expandable:hover {
  border-color: rgba(43, 188, 138, 0.5);
  background: rgba(43, 188, 138, 0.08);
}

.faq-question {
  padding: 0.75rem 1rem;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  font-weight: 500;
  color: rgba(43, 188, 138, 0.9);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: rgba(43, 188, 138, 1);
}


.faq-toggle {
  font-size: 0.9em;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
  position: absolute;
  right: 1rem;
  flex-shrink: 0;
}

.faq-expandable.expanded .faq-toggle {
  transform: rotate(90deg);
  opacity: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
  opacity: 0;
}

.faq-expandable.expanded .faq-answer {
  max-height: 10000px;
  padding: 0.75rem 1rem 1rem 1rem;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  line-height: 1.725;
}

.faq-answer a {
  color: rgba(43, 188, 138, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(43, 188, 138, 0.4);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.faq-answer a:hover {
  color: rgba(43, 188, 138, 1);
  text-decoration-color: rgba(43, 188, 138, 0.7);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .faq-expandable {
    border-color: rgba(43, 188, 138, 0.4);
    background: rgba(43, 188, 138, 0.08);
  }
  
  .faq-expandable:hover {
    border-color: rgba(43, 188, 138, 0.6);
    background: rgba(43, 188, 138, 0.12);
  }
  
  .faq-question {
    color: rgba(43, 188, 138, 0.95);
  }
  
  .faq-question:hover {
    color: rgba(43, 188, 138, 1);
  }
}

