/* Expandable FAQ styles */
.faq-item {
  margin-bottom: 14px;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.08em;
  font-weight: 600;
  color: #2563eb;
  padding: 12px 0 8px 0;
  cursor: pointer;
  outline: none;
  transition: color 0.2s;
  position: relative;
}
.faq-question[aria-expanded="true"] {
  color: #16a34a;
}
.faq-question::after {
  content: '\25BC';
  float: right;
  font-size: 0.9em;
  margin-left: 8px;
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  background: #f6f8fa;
  color: #374151;
  font-size: 1.08em;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 1px 4px rgba(37,99,235,0.06);
  padding: 0 22px;
  margin-bottom: 18px;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.2s, margin-bottom 0.2s;
}
.faq-question[aria-expanded="true"] + .faq-answer {
  padding: 22px 22px 26px 22px;
  margin-bottom: 28px;
}
/* faq.css - Custom styles for FAQ page */
.faq-main {
  padding: 60px 0 40px 0;
  background: #f9fafb;
}
.faq-title {
  font-size: 2.2em;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 12px;
  text-align: center;
}
.faq-lead {
  font-size: 1.13em;
  color: #374151;
  max-width: 700px;
  margin: 0 auto 32px auto;
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
}
.faq-search {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 36px auto;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid #e0e7ff;
  font-size: 1.08em;
  color: #374151;
  background: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,0.07);
  transition: border-color 0.2s;
}
.faq-search:focus {
  border-color: #2563eb;
  outline: none;
}
.faq-section {
  margin-bottom: 38px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(37,99,235,0.07);
  padding: 28px 22px 18px 22px;
}
.faq-section-title {
  font-size: 1.18em;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 16px;
}
.faq-list {
  list-style: disc inside;
  padding-left: 0;
  color: #374151;
  font-size: 1.05em;
}
.faq-list li {
  margin-bottom: 10px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .faq-main { padding: 30px 0 20px 0; }
  .faq-title { font-size: 1.3em; }
  .faq-lead { font-size: 1em; }
  .faq-section { padding: 14px 8px 10px 8px; }
  .faq-section-title { font-size: 1em; }
}
.faq-main { padding-top: 60px; }
@media (min-width: 1080px) {
  .faq-main { padding-top: 140px; }
}
