.title-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0 1rem;
}
.title-section > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - 30px);
  color: var(--black);
}
.title-section > div > div {
  width: 100%;
  font-size: 0.8rem;
}
.title-section > div > h1 {
  font-size: 1.6rem;
  width: 100%;
}
.policy-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.policy-section > div {
  width: calc(100% - 30px);
  color: var(--black);
  font-size: 0.8rem;
  line-height: 1.5;
}
.policy-section > div > ul {
  padding: 0 0 0 30px;
}
@media screen and (width > 1600px) {
  .title-section > div,
  .policy-section > div {
    max-width: var(--main-max-width);
  }
}
@media screen and (width <= 1600px) {
  .title-section > div,
  .policy-section > div {
    max-width: var(--main-width);
  }
}
@media screen and (width <= 767px) {
  .title-section {
    margin: 1rem 0;
  }
  .title-section > div > h1 {
    font-size: 1.2rem;
  }
  .policy-section h2,
  .policy-section h3 {
    font-size: 1rem;
  }
}
