.policies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 120px;
  padding-top: 64px;
  padding-bottom: 144px;
  gap: 4rem;
}
@media (max-width: 768px) {
  .policies {
    padding-inline: 20px;
    gap: 40px;
    padding-top: 88px;
    padding-bottom: 120px;
  }
}
.policies * {
  line-height: 1.5;
}

.policy__item h3 {
  font-weight: 700;
  font-size: 1.25rem;
  -webkit-margin-after: 0.25rem;
          margin-block-end: 0.25rem;
}
@media (max-width: 768px) {
  .policy__item h3 {
    font-size: 16px;
  }
}
.policy__item:has(.list) > p {
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .policy__item:has(.list) > p {
    font-size: 14px;
  }
}

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0.25rem;
}