/* FAQ CSS - LOKÁLIS STÍLUSOK */
.faq-question {
  width: 100%;
  padding: 0 40px 0 15px;
  background: transparent;
  border: none;
  text-align: left;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

.faq-text {
  flex: 1;
  padding-right: 16px;
  line-height: 1.5;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-icon svg {
  color: #64748b;
  transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item.faq-open .faq-icon svg {
  color: var(--hero-blue-light);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px 0 15px;
}

.faq-item.faq-open .faq-answer {
  padding: 0 15px 20px 15px;
}
