body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

main {
  padding: 16px;
}

.policy-header {
  background-color: #0d1f61;
  color: white;
  text-align: center;
  padding: 24px 16px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
}

.logo {
  display: none;
}

.policy-header__titl {
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.ol-primary-list {
  padding-left: 0;
  list-style: upper-roman;
  margin-top: 32px;
}

.ol-primary-list__item {
  list-style-position: inside;
  margin-top: 32px;
}

.ol-primary-list__item::marker {
  font-weight: 600;
}

.ol-secondary-list {
  margin-top: 16px;
  padding-left: 24px;
  list-style: decimal;
}

.ol-secondary-list__item {
  list-style-position: inside;
  margin-top: 16px;
}

.ol-secondary-list__item::marker {
  font-weight: 600;
}

.ul-primary-list {
  padding: 0;
  list-style: none;
}

.ul-primary-list__item {
  margin-top: 16px;
}

.ul-secondary-list {
  padding: 0;
  margin-inline-start: 24px;
  list-style: disc;
  
}

.ul-secondary-list__item {
  margin-top: 16px;
}

.ul-secondary-list__item::marker {
  margin: 0;
}

a {
  text-decoration: none;
  color: #1f6bc1;
}

.privacy-footer {
  display: none;
  padding: 24px;
}

.privacy-footer__button {
  display: none;
  width: 120px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1.5px solid #4a90e2;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #4a90e2;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.privacy-footer__button:hover {
  background-color: #4a90e2;
  color: #ffffff;
}

.privacy-footer__button:active {
  background-color: #1f6bc1;
  border-color: #1f6bc1;
}

@media screen and (min-width: 768px) {
  .policy-header {
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .logo {
    display: block;
  }

  .privacy-footer {
    display: flex;
    justify-content: center;
  }

  .privacy-footer__button {
    display: block;
  }
}
