.faq-block {
  padding-top: 1.5rem;
  padding-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.faq-block.open {
  padding-bottom: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
}
.faq-block.open .faq-content {
  max-height: 3000px;
  opacity: 1;
}
.faq-toggle img {
  transition: transform 0.3s ease;
}
.faq-block.open .faq-toggle img {
  transform: rotate(180deg);
}

.faq-content a {
  color: var(--gac-black);
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s ease-out;
}
.faq-content a:hover {
  opacity: 0.7;
}

.faq-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.875rem;
}
.faq-content table th,
.faq-content table td {
  border: 1px solid #e6e6e6;
  padding: 0.5rem 0.75rem;
  text-align: left;
}
.faq-content table th {
  background-color: #f2f2f2;
  font-weight: 600;
}
