.quick-link {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #2563eb;
  text-decoration: none;
  transition: all 0.2s;
}
.quick-link:hover {
  color: #1e40af;
  text-decoration: none;
}
.quick-links {
  margin-bottom: 32px;
}
.contact-info {
  margin-bottom: 40px;
  padding: 16px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  margin-top: 0;
}
.contact-info p {
  font-size: 14px;
  color: #374151;
}
.contact-info a {
  color: #2563eb;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: none;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  scroll-margin-top: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  transition: all 0.2s;
  background-color: transparent;
}
.faq-item:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}
.chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #9ca3af;
  transition: transform 0.2s;
}
details[open] .chevron {
  transform: rotate(180deg);
}
.faq-question {
  font-weight: 500;
  color: #111827;
  transition: color 0.2s;
  font-size: 15px;
}
.faq-item:hover .faq-question {
  color: #2563eb;
  background-color: #f9fafb;
}
.faq-answer {
  margin: 0 16px 16px 48px;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  background-color: transparent;
}
.faq-summary {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
  background-color: transparent;
}
.faq-summary:hover {
  text-decoration: none;
  background-color: #f9fafb;
}
.faq-summary::-webkit-details-marker {
  display: none;
}
.faq-summary::marker {
  display: none;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary::marker {
  display: none;
}
details summary {
  list-style: none;
}
details > summary {
  list-style: none;
}
.blue-link {
  color: #2563eb !important;
}
