#back-link {
  display: flex;
  align-items: center;
  gap: 17px;
  text-decoration: none;
  margin-bottom: 32px;

  svg {
    fill: white;
    transition: fill 0.3s ease;
  }

  p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
  }
}

#back-link:hover {
  svg {
    fill: #d4ff00;
  }

  p {
    color: #d4ff00;
  }
}

.policy-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 94%;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}

.policy-wrapper {
  p {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 18px;
    line-height: 133%;
    text-align: justify;
    color: #fff;
    margin-bottom: 16px;
  }

  h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
    text-align: justify;
    color: #fff;
    margin-bottom: 24px;
  }

  h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-align: justify;
    color: #fff;
    margin-bottom: 18px;
  }

  a {
    color: #487cff;
    text-decoration: underline;
    text-decoration-skip-ink: none;
  }

  ul {
    color: #fff;
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1437px) {
  #back-link {
    margin-bottom: 48px;

    p {
      font-size: 18px;
    }
  }

  .policy-title {
    font-size: 40px;
    margin-bottom: 32px;
  }

  .policy-wrapper {
    h2 {
      font-size: 40px;
    }

    h3 {
      font-size: 36px;
    }

    p {
      font-size: 30px;
    }
  }
}
