
 /* Стили для баннера */
    .consent-banner {
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) translateY(100%);
      width: 100%;
      max-width: 800px;
      background: #fff;
      padding: 12px 16px;
      box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: transform 0.3s ease-in-out;
      font-family: Arial, sans-serif;
      font-size: 12px;
      z-index: 1000;
      box-sizing: border-box;
	  border-radius: 10px;
    }

    .consent-banner--visible {
      bottom: 10px;
      transform: translateX(-50%) translateY(0);
    }

    .consent-banner__text {
      margin-right: 12px;
      color: #333;
      line-height: 1.4;
    }

    .consent-banner__link {
      color: #007bff;
      text-decoration: underline;
    }

    .consent-banner__button {
      background: #ffc107;
      border: none;
      padding: 8px 14px;
      font-size: 14px;
      cursor: pointer;
      border-radius: 4px;
    }
    .consent-banner__button:hover {
      background: #e0a800;
    }

    @media (max-width: 480px) {
      .consent-banner {
        flex-direction: column;
        text-align: center;
      }
      .consent-banner__text {
        margin-bottom: 8px;
      }
    }