footer {
  background: rgba(255, 255, 255, 1.0);
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgba(7, 8, 9, 1.0);
}

 .policy-link-modal {
      display: none; /* По умолчанию окно скрыто */
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.4); /* Тёмный фон */
    }

    .policy-link-modal-content {
      text-align: left;
      background-color: #fff;
      margin: 10% auto;
      padding: 2rem;
      max-width: 600px;
      border-radius: 6px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      position: relative;
    }

    /* Адаптивность для мобильных устройств */
    @media screen and (max-width: 600px) {
      .policy-link-modal-content {
        width: 90%;
        margin: 20% auto;
        padding: 1rem;
      }
    }

    .policy-link-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Стиль самой ссылки */
    .policy-link {
      color: #007bff;
      cursor: pointer;
    }