.privacy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  letter-spacing: -0.02em;
  border-bottom: 1px solid #e9e9e9;
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 1.625rem;
}

.main-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.main-text {
  font-size: 0.875rem;
  color: #8D8D8D;
}

.content-box {
  background: #f4f4f4;
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
 }

.content-box.no-css {
  background: none;
  padding: 0;
  border: none;
}

.sub-title {
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e0e0e0;
}

.list-box {
  margin-top: 0.75rem;
}

.list {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.list:last-of-type {
  margin-bottom: 0;
}

.list li {
  position: relative;
  padding-left: 12px;
  color: #5f5f5f;
  font-weight: 400;
}

.list li:before {
  position: absolute;
  top: 7px;
  left: 3px;
  width: 5px;
  height: 1px;
  background: #5F5F5F;
  content: '';
  display: inline-block;
}

.list li b {
  color: #1A1A1A;
}

.list.space li {
  margin-top: 1rem;
}

.list.space-sm li {
  margin-top: 0.5rem;
}

.list.space-xs li {
  margin-top: 0.25rem;
}

.list li:first-child {
  margin-top: 0.25rem;
}

/* table */
.privacy-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #000;
  font-size: 0.625rem;
}

.privacy-table.center th,
.privacy-table.center td{
  text-align: center;
}

.privacy-table th,
.privacy-table td:first-child {
  font-weight: 600;
  background: #f4f4f4;
}

.privacy-table th,
.privacy-table td {
  border: 1px solid #e9e9e9;
  padding: 8px;
  text-align: left;
}

/* accordion */
.accordion-menu {
  display: flex;
  flex-direction: column;
  overflow: hidden;

  & .accordion-item .btn {
    transition: all 0.3s ease;
  }

  &.active .accordion-item .btn {
    transform: rotate(180deg);
  }

  &.active .accordion-content {
    max-height: 500px;
    opacity: 1;
  }
}

.accordion-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;

  & a.link {
    font-size: 0.875rem;
    text-decoration: underline;
  }
}
