body#policy {
  height: auto;
  color: #333;
  padding: 50px 80px;
  position: relative;
}

#policy p,
#policy li,
#policy button {
  font-size: 16px;
}

#policy h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

#policy h1::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #339944;
  position: absolute;
  bottom: -5px;
  left: 0;
}

#policy h2 {
  font-size: 20px;
  margin-bottom: 5px;
}

.sub-group+.sub-group {
  margin-top: 30px;
}

.sub-group:last-of-type {
  margin-bottom: 50px;
}

#policy p+#policy ol,
#policy p+#policy ul,
#policy ol+#policy p,
#policy ul+#policy p {
  margin-top: 3px;
}

#policy ol {
  list-style: decimal inside;
}

#policy ul {
  list-style: none;
}

#policy ul li::before {
  content: "-";
  padding-right: 5px;
}

#policy li {
  text-indent: -1em;
  padding-left: 1em;
}

#policy ul li {
  text-indent: -0.7em;
  padding-left: 0.7em;
}

span.indent {
  display: block;
  text-indent: 0;
}

p.fin {
  text-align: right;
}

button#policyOpen {
  color: #339944;
  text-align: left;
  text-decoration: underline;
  line-height: 1.3;
  white-space: normal;
  word-break: break-all;
  transition: 0.5s;
}

button#policyOpen:hover {
  opacity: 0.5;
}

button#policyOpen i {
  padding-left: 3px;
}

button#policyClose {
  background: #339944;
  color: white;
  font-size: 18px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 40px;
  margin: 0 auto;
  transition: 0.5s;
}

button#policyClose:hover {
  opacity: 0.5;
}





@media screen and (max-width: 1024px) {
  body#policy {
    padding: 30px 50px;
  }

  #policy h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  #policy h2 {
    font-size: 18px;
  }

  .sub-group+.sub-group {
    margin-top: 20px;
  }
}





@media screen and (max-width: 767px) {
  body#policy {
    padding: 10px 20px;
  }

  #policy p,
  #policy li,
  #policy button {
    font-size: 14px;
  }

  #policy h1 {
    font-size: 20px;
    line-height: 1.3;
  }

  #policy h1 span {
    font-size: 14px;
  }

  #policy h1::after {
    bottom: -8px;
  }

  #policy h2 {
    font-size: 16px;
  }

  input#policyClose {
    font-size: 16px;
  }
}