
.fycos-faq {
  padding: 40px 16px;
  background: #f8f9fa;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-color: #d1d5db;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  transition: background 0.2s ease;
}
.faq-question:hover {
  background: #fafafa;
}
.faq-question:focus {
  outline: 2px solid #3b82f6;
  outline-offset: -2px;
}
.faq-q-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.faq-q-text {
  flex: 1;
  line-height: 1.4;
}
.faq-arrow {
  color: #9ca3af;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: #3b82f6;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 24px 20px 24px;
}
.faq-answer p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 12px 0;
  padding-left: 46px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .fycos-faq { padding: 24px 12px; }
  .faq-question { padding: 16px 18px; font-size: 0.95rem; }
  .faq-answer p { padding-left: 0; }
  .faq-item.active .faq-answer { padding: 0 18px 16px 18px; }
}
