/* Policy page specific styles */
.policy-page {
  padding-top: 77px !important;
  letter-spacing: 0;
  padding-bottom: 95px !important;
}

.policy__container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

.policy__container h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  width: 100%;
}

.policy__container h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 30px 0 15px;
  position: relative;
  padding-left: 15px;
}

.policy__container h3::before {
  content: "";
  width: 4px;
  background: #4399C9;
  height: 18px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.policy__container p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.policy__container ul {
  margin: 15px 0;
  padding-left: 20px;
}

.policy__container ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
  line-height: 1.6;
}

/* Change the bullet point selector to only apply on policy page */
body:not(.terms) .policy__container ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* Add specific styling for terms page bullet points */
body.terms .policy__container ul li {
  list-style-type: none;
}

.policy__container a {
  color: #4399C9;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.policy__container a:hover {
  opacity: 0.7;
}

.policy__container .contact-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed #E9E9E9;
}

@media only screen and (max-width: 560px) {
  .policy__container.wrap {
    padding: 7.14vw 3.57vw;
  }

  .policy__container h2 {
    font-size: 5.36vw;
    }

  .policy__container h3 {
    font-size: 4.64vw;
  }
}
