.omega-logic-faq-section {
  margin: 40px 0;
}
.omega-logic-faq-section h2 {
  margin-bottom: 20px;
}
.faq {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  transition: background 0.2s ease;
}
.faq-question:hover,
.faq-item.active .faq-question {
  background: #f6f7f7;
}
.faq-icon {
  flex-shrink: 0;
  margin-left: 14px;
  font-size: 22px;
  font-weight: 400;
  color: #0073aa;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 4px 20px 18px;
  color: #555;
  font-size: 15px;
  line-height: 1.65;
}
.faq-answer p {
  margin: 0;
}
.faq-item.active .faq-answer {
  display: block;
}
