.policy-wrapper {
  padding-top: 36px;

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: justify;
    margin-bottom: 20px;
  }

  h2 {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 20px;
    margin-top: 20px;
  }
  h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 140%;
    text-align: justify;
    margin-top: 20px;
  }

  a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: justify;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #4285f4;
  }

  ul {
    list-style: disc;
    padding-left: 20px;
  }

  .cookie-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.3s ease;
    width: 80px;
    color: var(--text);
  }

  .cookie-svg {
    fill: none;
    stroke: var(--text);
    transform: rotate(-90deg);
    transition: stroke 0.3s ease;
  }

  .cookie-link:hover {
    color: var(--accent);
    .cookie-svg {
      stroke: var(--accent);
    }
  }
}

@media screen and (min-width: 1438px) {
  .policy-wrapper {
    p,
    h3 {
      font-size: 24px;
      margin-bottom: 40px;
    }

    a {
      font-size: 24px;
    }

    h2 {
      font-size: 40px;
      margin-bottom: 40px;
      margin-top: 40px;
    }
  }

  .cookie-link {
    margin-bottom: 41px;
  }
}
