*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
    height : 100%;
  text-align: justify;
}

.policy-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-bottom: 150px;
}
.policy-header {
  margin-top: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
  margin-bottom: 50px;
}
.policy-header > h4 {
  text-align: center;
}
.policy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.policy-content .policy-one {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.policy-content .policy-one > ul {
  margin-bottom: 25px;
}
.policy-content .policy-one > ul > li {
  margin-bottom: 10px;
}

/* Responsive */

@media (max-width: 800px) {
  .policy-content .policy-one {
    display: flex;
    flex-direction: column;
    width: 70%;
  }
}

