/* FAQ module */
.schema-faq {
  max-width: 1050px;
  margin: 40px auto;
  padding: 20px;
}

.schema-faq-section {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.schema-faq-section:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.schema-faq-question {
  display: flex !important;
  align-items: center;
  padding: 18px 25px;
  margin: 0 !important;
  background: linear-gradient(90deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e5e7eb;
  color: #1e293b;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.4;
  cursor: default;
}

.schema-faq-question::before {
  content: "\f12a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  margin-right: 15px;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.4);
}

.schema-faq-answer {
  padding: 20px 25px 25px 72px;
  margin: 0 !important;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
  background: #ffffff;
  position: relative;
}

.schema-faq-answer::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 25px;
  top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #10b981;
  color: white;
  border-radius: 8px;
  font-size: 0.9rem;
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.4);
}

@media (max-width: 640px) {
  .schema-faq-question {
    padding: 15px;
    font-size: 1.1rem;
  }

  .schema-faq-answer {
    padding: 15px 15px 15px 60px;
  }

  .schema-faq-question::before,
  .schema-faq-answer::before {
    min-width: 28px;
    height: 28px;
    left: 15px;
  }
}
