.faq {
  width: 100%;
}

.faq-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start; /* 🔥 important */
}

/* Section title full width */
.faq-title {
  grid-column: 1 / -1;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
  letter-spacing: -0.4px;
}

/* RTL support */
:dir(rtl) .faq-title {
  text-align: right;
}

/* Item card */
.faq-item {
  border: 1px solid #eaeaea;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

/* Question button */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

:dir(rtl) .faq-question {
  text-align: right;
}

/* Plus icon */
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-icon.open {
  transform: rotate(45deg);
}

/* Answer */
.faq-answer {
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  border-top: 1px solid #f2f2f2;
}

/* ===== Desktop: 2 per row ===== */
@media (min-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr 1fr;
  }

  .faq-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
