/* Policy Section */
.policy-section {
  padding-top: clamp(1.25rem, 0.438rem + 4.06vw, 5.313rem);
}

.policy-section-container {
  padding: 0 30px;
  margin: 0 auto;
  max-width: 1920px;
}

.policy-menu {
  padding-bottom: 50px;
  display: flex;
  gap: 50px;
  margin: 0 auto;
  position: relative;
}

.policy-menu::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  height: 1px;
  width: 100%;
  background-color: #304B85;
  margin-top: 25px;
}

.policy-tab {
  background: inherit;
  border: none;

  font-family: 'Jost', sans-serif;
  font-size: clamp(1.25rem, -0.893rem + 3.35vw, 3.125rem);
  color: #304B85;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; 
}

.policy-content {
  margin-top: 50px;
}

.policy-content::after {
  content: '';
  display: block;
  position: relative;
  height: 1px;
  width: 100%;
  background-color: #304B85;
  margin-top: 25px;
}

.policy-content h2 {
  font-family: 'Jost', sans-serif;
  font-size: 40px;
  color: #304B85;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; 
}

.policy-content p {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  color: #304B85;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; 

  padding: 10px 30px;
  max-width: 900px;
}

.policy-content-wrap {
  padding: 30px;
}

.policy-content-wrap h5 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #304B85;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; 
}


.policy-content-wrap p, li {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  color: #304B85;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; 

  padding: 10px;
  max-width: 900px;
}

.policy-content-wrap ul {
  list-style-type: lower-latin;
  padding-left: 50px;
}

@media (max-width: 670px) {
  .policy-section-container { 
    padding: 0 10px;
  }
  .policy-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .policy-menu::after {
    top: 80%;
  }

  .policy-content-wrap {
    padding: 15px;
  }
}