/* Add custom CSS styles below */ 
.faq-quran-v1 {
  direction: rtl;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 15px;
}

.faq-quran-v1 .faq-item {
  background-color: #ffffff;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border-right: 6px solid #C4B594;
  transition: all 0.3s ease;
}

.faq-quran-v1 .faq-item .faq-title {
  padding: 22px 30px;
  color: #4D764A;
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-quran-v1 .faq-item .faq-title .faq-icon {
  color: #C4B594;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-right: 15px;
}

.faq-quran-v1 .faq-item .faq-body {
  padding: 0 30px;
  color: #333333;
  line-height: 2;
  font-size: 1.15rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fcfcfc;
}

.faq-quran-v1 .faq-item .faq-title:hover {
  background-color: #f6f8f6;
}

.faq-quran-v1 .faq-item:hover {
  border-right-color: #4D764A;
}

.faq-quran-v1 .faq-item.active {
  box-shadow: 0 10px 25px rgba(77, 118, 74, 0.1);
  border-right-color: #4D764A;
}

.faq-quran-v1 .faq-item.active .faq-title {
  background-color: #f3f6f3;
}

.faq-quran-v1 .faq-item.active .faq-title .faq-icon {
  transform: rotate(180deg);
}

.faq-quran-v1 .faq-item.active .faq-body {
  max-height: 500px;
  padding: 25px 30px 30px;
}