.acc-item { border-bottom: 1px solid #e0d6c8; }
.acc-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  cursor: pointer;
  color: #618739;
  font-weight: 600;
  font-size: 1.05em;
  user-select: none;
  border-radius: 4px;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.acc-title:hover { color: #3a5a40; }
.acc-title.open {
  background-color: #618739;
  color: #fff;
}
.acc-title.open:hover { color: #fff; }
.acc-title .acc-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}
.acc-title.open .acc-chevron {
  transform: rotate(180deg);
  stroke: #fff;
}
.acc-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.acc-content.open {
  grid-template-rows: 1fr;
}
.acc-content-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0;
}
.acc-content.open .acc-content-inner {
  padding: 16px 16px 24px 16px;
  background-color: #f5f0e8;
  border-radius: 0 0 4px 4px;
}
.acc-content-inner p {
  color: #212E13;
  font-size: 1em;
  line-height: 1.8;
  padding-bottom: 12px;
}
.acc-content-inner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.acc-content-inner ul li {
  position: relative;
  padding-left: 20px;
  padding-bottom: 4px;
  color: #212E13;
  line-height: 1.8;
}
.acc-content-inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: #618739;
  border-radius: 50%;
}
.acc-content-inner li { padding-bottom: 4px; }
.acc-content-inner a {
  color: #618739;
  font-weight: 600;
  text-decoration: underline;
}
.acc-content-inner a:hover { color: #3a5a40; }
.acc-content-inner table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
  margin-bottom: 12px;
}
.acc-content-inner caption {
  text-align: left;
  padding-bottom: 10px;
  color: #212E13;
  font-style: italic;
  line-height: 1.6;
}
.acc-content-inner th {
  background-color: #618739;
  color: #fff;
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  white-space: nowrap;
}
.acc-content-inner td {
  padding: 10px 12px;
  border-bottom: 1px solid #e0d6c8;
  color: #212E13;
  line-height: 1.5;
  vertical-align: top;
}
.acc-content-inner tr:nth-child(even) td {
  background-color: rgba(97,135,57,0.05);
}
.table-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 12px;
}
.acc-content-inner .table-scroll-wrapper table {
  min-width: 600px;
  margin-bottom: 0;
}
@media (max-width: 759px) {
  .acc-content-inner .table-scroll-wrapper th:first-child,
  .acc-content-inner .table-scroll-wrapper td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    min-width: 110px;
    max-width: 140px;
    word-break: break-word;
  }
  .acc-content-inner .table-scroll-wrapper th:first-child {
    background-color: #618739;
  }
  .acc-content-inner .table-scroll-wrapper td:first-child {
    background-color: #FBF7F0;
    border-right: 2px solid #e0d6c8;
  }
  .acc-content-inner .table-scroll-wrapper tr:nth-child(even) td:first-child {
    background-color: #f5f1ea;
  }
}
