.faq-section {
  padding: 1.75rem;
  border-radius: 12px;
  box-sizing: border-box;
  width: 100%;
}

/* Two-column layout */
.faq-content-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: flex-start;
  box-sizing: border-box;
}

/* Left: 70% */
.faq-left {
  flex: 0 0 70%;
  max-width: 70%;
  box-sizing: border-box;
}

/* Right: 30% */
.faq-right {
  flex: 0 0 30%;
  max-width: 30%;
  box-sizing: border-box;
}

.faq-right img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Header Text */
.faq-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  margin-bottom: 50px;
}

.faq-subtitle {
  font-size: 1.1rem;
  margin: 0 0 1rem;
  line-height: 1.5;
}

/* Accordion */
.faq-accordion .faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
    color: var(--ar-header-color);
}

.faq-toggle-icon {
  width: 0.75em;
  height: 0.75em;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(135deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* softer easing */
  padding: 0.5rem 0 1rem;
}

.faq-item.active .faq-answer {
  display: block;
  color: var(ar--body-text);
}

/* Responsive */
@media (max-width: 991px) {
  .faq-content-row {
    flex-direction: column;
  }

  .faq-left,
  .faq-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .faq-right {
    text-align: left;
  }
}
