.header-block {
  background: unset;
  background-color: #ffffff;
  height: fit-content;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.05);
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  color: #656565;
}

.breadcrumbs__item {
  transition: color 300ms ease-out;
}

.breadcrumbs__item:hover {
  color: var(--yellow-primary);
}

.contacts-page__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e4e4e450;
  border-radius: 10px;
  backdrop-filter: blur(15px);
  box-shadow:
    0 1px 0 0 #00000033,
    0 -1px 0 0 #ffffff;
  padding: 40px 60px;
}

.privacy-page {
  padding: 50px 0;
}

.privacy-page__top {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.privacy-page__title {
  font-size: 50px;
  font-weight: 700;
  padding-left: 30px;
  border-left: 3px solid var(--yellow-primary);
  color: #303030;
}

.privacy-page__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.privacy-page__content {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.privacy-page__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.privacy-page__item-title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #303030;
}

.privacy-page__item-caption {
  font-size: 14px;
  line-height: 1.5;
  color: #656565;
}

.privacy-page__table {
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  background: #e4e4e450;
  padding: 50px;
}

.privacy-page__table-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 270px;
}

.privacy-page__table-item__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #303030;
}

.privacy-page__table-item__caption {
  font-size: 14px;
  line-height: 1.5;
  color: #656565;
}

.privacy-page__table-divider {
  border-left: 1px solid #30303010;
}

.privacy-page__table-item__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  line-height: 1.4;
  color: #656565;
}

.privacy-page__table-item__list li::before {
  content: "• ";
  color: var(--yellow-primary);
  margin: 0 5px 0 0;
}


@media screen and (max-width: 1024px) {
  .privacy-page {
    padding: 60px 20px;
  }

  .privacy-page__title {
    font-size: 30px;
  }

  .privacy-page__table-item {
    max-width: 180px;
  }
}

@media screen and (max-width: 768px) {
  .privacy-page__title {
    font-size: 20px;
  }

  .privacy-page {
    padding: 40px 20px;
  }

  .privacy-page__table {
    flex-direction: column;
    gap: 20px;
  }

  .privacy-page__table-item {
    max-width: 100%;
  }

  .privacy-page__table-divider {
    border-bottom: 1px solid #e4e4e450;
  }
}

@media screen and (max-width: 480px) {
  .privacy-page__top {
    gap: 30px;
  }

  .breadcrumbs {
    font-size: 12px;
  }
}