.audit-faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
}

.audit-category {
  margin-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}

.audit-category h3 {
  color: #2a6496;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item {
  margin: 15px 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  background: #e0ae5f;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.2em;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  padding: 15px;
  display: none;
}

.faq-answer.show {
  display: block;
}

.location-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.location-links a {
  color: #0066cc;
  text-decoration: none;
}

.location-links a:hover {
  text-decoration: underline;
}