.accordion-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.accordionjs {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accordionjs .acc_section {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
}
.acc_head {
  width: 100%;
}
.acc_content {
  width: 100%;
}
.accordionjs .acc_section .acc_head {
  /* transition: all 0.2s ease; */
  padding: 18px 25px;
  font-weight: 600;
  color: #0f233a;
  cursor: pointer;
  position: relative;
  font-size: 18px;
}

.accordionjs .acc_section .acc_head:hover {
  background-color: #f8f8f8;
}

.accordionjs .acc_section .acc_head h3 {
  line-height: 1;
  margin: 5px 0;
}
.accordionjs .acc_section .acc_content {
  padding: 0 20px 20px;
  padding-top: 16px;
  color: #555;
  line-height: 1.5;
  font-size: 16px;
  display: none; /* Hidden by default */
}
.accordionjs .acc_section:first-of-type,
.accordionjs .acc_section:first-of-type .acc_head {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.accordionjs .acc_section:last-of-type,
.accordionjs .acc_section:last-of-type .acc_content {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.accordionjs .acc_section.acc_active > .acc_content {
  display: block;
}
.accordionjs .acc_section.acc_active > .acc_head {
  /* background: #F9F9F9;
  border-bottom: 1px solid #ccc; */
  background: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}

.accordionjs .acc_section:first-of-type,
.accordionjs .acc_section:first-of-type .acc_head,
.accordionjs .acc_section:last-of-type,
.accordionjs .acc_section:last-of-type .acc_content {
  border-radius: 8px !important;
}

/* Add arrow indicator */
.acc_head::after {
  content: "+";
  float: right;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.acc_active .acc_head::after {
  content: "-";
}
