* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #faf8ff, #e8d9ff, #f5eaff);
}

html[dir="rtl"] .hero-text {
  text-align: right;
}

html[dir="rtl"] .hero-cta-wrapper {
  justify-content: flex-start !important;
}

html[dir="rtl"] .hero-text h1,
html[dir="rtl"] .hero-text p {
  text-align: right;
}

#faq .accordion-button {
  background-color: #f9f3ff;
  color: #5c2b85;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

#faq .accordion-button:not(.collapsed) {
  background-color: #ede2f7;
  color: #7f3abf;
  box-shadow: none;
}

#faq .accordion-body {
  background-color: #fff;
  border-top: 1px solid #e6dcfa;
  color: #4e3b66;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
}

#faq .accordion-item {
  background-color: #fff;
  border: none;
}
/* General RTL override for Accordion */
html[dir="rtl"] .accordion-button {
  text-align: right;
  padding-right: 1.25rem;
  padding-left: 3rem; /* Create space for arrow on the left */
  direction: rtl;
}

/* Flip the Bootstrap arrow to the left side */
html[dir="rtl"] .accordion-button::after {
  margin-left: 0;
  margin-right: auto;
  left: 1rem;
  right: auto;
  position: absolute;
}

footer {
  background-color: #faf8ff;
}
footer a {
  text-decoration: none;
}
footer a:hover {
  color: #7f3abf !important;
}
