
.faq-section {
  max-width: 1000px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}
.faq-title {
  font-size: 24px;
  color: #1a5f7a;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 18px 22px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.faq-card:hover {
  border-color: #1a5f7a;
  background-color: #f5faff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.faq-question {
  font-size: 15px;
  font-weight: bold;
  color: #222;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-question::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #1a5f7a;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
}
.faq-answer {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  padding-left: 30px;
}
