.accordion-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  direction: rtl;
  font-family: "Vazirmatn";
}

.accordion-section h2 {
  text-align: center;
  color: #444;
  font-size: 2em;
  margin-bottom: 30px;
}

.accordion {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  /* text-align: right; این خط را حذف کنید */
  background-color: #f9f9f9;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
}

.accordion-header:hover {
  background-color: #f1f1f1;
}

.accordion-title {
  flex-grow: 1;
  text-align: right; /* این خط را اضافه کنید */
}

/* Style for the default marker icon */
summary::marker {
  content: none;
}

/* Custom icon for the summary */
.accordion-header::before {
  content: "▼";
  font-size: 0.8em;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* Rotate the icon when the details is open */
details[open] .accordion-header::before {
  transform: rotate(-180deg);
}

.accordion-content {
  background-color: #fff;
  padding: 20px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}
