.faq-wrapper {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  gap: 40px;
  font-family: Arial, sans-serif;
}

.faq-left {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  padding: 16px;
  transition: background 0.3s;
}

.faq-question {
  font-size: 16px;
  font-weight: 500;
}

.faq-item.active {
  background-color: #1d2dfd;
  color: #fff;
}

.faq-right {
  width: 55%;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 8px;
  min-height: 150px;
}

.faq-answer {
  display: none;
  font-size: 16px;
  line-height: 1.6;
}


.card-hover:hover .card-text {
  color: #111E6C !important;
  transition: color 0.3s ease;
}

.card-hover:hover .circle-icon {
  background-color: #111E6C !important;
  transition: background-color 0.3s ease;
}

.card-hover:hover .circle-icon svg path {
  fill: white !important; /* dacă SVG-ul are săgeată neagră */
}

