* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  scrollbar-width: none;
}
::-webkit-scrollbar {
  width: 10px; /* width of the scrollbar */
}
::-webkit-scrollbar-track {
  background: #ffffff; /* color of the track */
}
::-webkit-scrollbar-thumb {
  background: rgb(97, 180, 205);
}
.container {
  width: 96%;
  background: #fff;
  padding: 10px 0 30px 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}

.back-wrapper {
  display: flex;
  padding: 14px 0 10px 0;
}

.back-img {
  width: 31px;
  height: 31px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url("images/Specialised/BackIcon.png");
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.policy-content {
  width: 90%;
  margin-top: 10px;
}
.policy-content > h1 {
  color: #000000;
  font-family: "Azo Sans Med";
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 65px;
  margin-bottom: 30px;
  margin-left: 20px;
}

.policy-content > h2 {
  color: #000000;
  font-family: "Azo Sans Med";
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 65px;
  margin-bottom: 20px;
  margin-left: 40px;
  text-decoration: underline;
  text-decoration-color:  rgb(97, 180, 205);
  text-decoration-thickness: 3px;
  text-underline-offset: 12px;
}
.policy-content > p {
  color: #000000;
  font-family: "Azo Sans Reg";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  margin-left: 40px;
  margin-bottom: 100px;
}

.policy-content ul {
  color: #000000;
  font-family: "Azo Sans Reg";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  padding-left: 40px; /* Adjust the left padding for indentation */
  list-style-type: disc; /* Use disc bullets for the list items */
}

.policy-content ul li {
  margin-bottom: 5px; /* Add some space between list items */
}