.faq-wrapper {
  display: flex;
  gap: 60px;
  padding: 40px 20px;
  flex-wrap: wrap;
  max-width: var(--site-max-width, 1400px );
  margin: 0 auto;
}

.faq-left {
  flex: 1;
  min-width: 280px;
}

.faq-tag {
  display: inline-block;
  background: white;
  color: #1d3e3a;
  border-radius: 20px;
  padding: 6px 16px;
  font-weight: 600;

  margin-bottom: 20px;
}

.faq-left h2 {
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
  text-align: left;
}

.faq-left .highlight {
  color: var(--accent-color);
}

.faq-right {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: #ffffff;
  border: none;
  padding: 24px;
  width: 100%;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--dark-background-color);
}

.faq-item.open .faq-question {
  font-weight: 600;
}

.toggle-icon {
  font-size: 24px;
  font-weight: 700;
 color: var(--dark-background-color);
}

.faq-answer {
  padding: 0 24px 24px 60px;
  color: #6c757d;
  font-size: 16px;
  line-height: 1.6;
}
