.faqs-block {
  /* background: #f4f9fd; */
  border-radius: 12px;
  padding: 16px 0;
  max-width: 900px;
  margin: 32px auto;
  /* box-shadow: 0 2px 12px rgba(0, 40, 100, 0.06); */
}
.faq-item + .faq-item {
  margin-top: 12px;
}
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 8px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 700;
  color: #15395b;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 1px 4px rgba(0, 40, 100, 0.04);
  position: relative;
}
.faq-question[aria-expanded="true"] {
  background: #eaf3fa;
}
.faq-icon {
  display: inline-block;
  background: #1976d2;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  font-size: 1.1rem;
  margin-right: 16px;
  font-weight: 700;
}
.faq-toggle {
  margin-left: auto;
  width: 24px;
  height: 24px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faq-toggle::before {
  content: "+";
  font-size: 1.5rem;
  color: #1976d2;
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"] .faq-toggle::before {
  content: "–";
  transform: rotate(180deg);
}
.faq-answer {
  background: #fff;
  border-radius: 0 0 8px 8px;
  margin-top: -4px;
  padding: 18px 32px 18px 68px;
  color: #1a2d3a;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0, 40, 100, 0.03);
  animation: fadeInFaq 0.2s;
}
@keyframes fadeInFaq {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 600px) {
  .faq-question {
    font-size: 1rem;
    padding: 16px 12px;
  }
  .faq-answer {
    padding: 14px 18px 14px 18px;
  }
  .faq-icon {
    display: none;
  }
}
