
.container {
  width: 100%;
  max-width: 700px;
  text-align: center;
}
.title {
  color: #6a3ba0;
  /* font-size: 2.5em; */
  margin-bottom: 20px;
  /* font-weight: bold; */
}
.intro-text {
  /* font-size: 1.1em; */
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 0 20px;
}
.content-box {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: left;
  line-height: 1.8;
  margin-bottom: 40px;
  margin-left: 10px;
  margin-right: 10px;
}
.content-box p {
  margin-bottom: 1.5em;
  /* font-size: 1.05em; */
}
.content-box p:last-child {
  margin-bottom: 0;
}
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.pagination-btn {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 18px;
  /* font-size: 1em; */
  cursor: pointer;
  transition: all 0.2s ease;
  color: #555;
}
.pagination-btn:hover:not(:disabled) {
  background-color: #e0e0e0;
  border-color: #ccc;
}
.pagination-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.page-numbers {
  display: flex;
  gap: 5px;
}
.page-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  /* font-weight: normal; */
  color: #555;
}
.page-number:hover {
  background-color: #f0f0f0;
}
.page-number.active {
  background-color: #6a3ba0;
  color: #fff;
  border-color: #6a3ba0;
  /* font-weight: bold; */
}


.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.accordion-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-left: 20px;
  margin-right: 20px;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #333;
}
.arrow-icon {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #333;
  transition: transform 0.3s ease;
}
.accordion-header.active .arrow-icon {
  transform: rotate(180deg);
}
.accordion-content {
  background-color: #8e56bd;
  color: #fff;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  box-sizing: border-box;
}
.accordion-content.active {
  padding: 15px 20px;
  max-height: 500px;
}
.accordion-content p {
  margin: 0;
  line-height: 1.6;
}
.accordion-content ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}
.accordion-content li {
  margin-bottom: 8px;
}
.accordion-content li:last-child {
  margin-bottom: 0;
}

