.faq-section {
  padding: 60px 10%;
  font-family: "Myriad Pro", Arial, sans-serif;
}

.faq-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Left Column */
.faq-left {
  flex: 0 0 60%;
}

.faq-left h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--purple-color);
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid #ccc; /* grey line */
  padding: 15px 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header .question {
  color: var(--purple-color);
  font-weight: 600;
}

.toggle-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--purple-color);
  padding-left: 40px;
}

.accordion-content {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-grey);
  padding-right: 50px;
}

/* Right Column */
.faq-right {
  flex: 0 0 40%;
  text-align: center;
}

.faq-right img {
  max-width: 100%;
  height: auto;
}

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

  .faq-left {
    width: 80vw;
  }

  .faq-right {
    display: flex;
    width: 100%;
    margin-top: 30px;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .faq-right img {
    width: 400px;
  }
}
