.modal {
        display: none;
        position: fixed;
        z-index: 1000;
        padding-top: 40px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.6);
      }

      /* Contenido del modal */
      .modal-contenido {
        background-color: #fff;
        margin: auto;
        padding: 25px;
        border-radius: 8px;
        width: 90%;
        max-width: 700px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        animation: animarPopup 0.3s ease-out;
      }
      .modal-contenido h2 {
        font-size: 28px;
        line-height: 33px;
        margin-bottom: 15px;
        font-weight: 400;
        text-align: left;
      }
      .modal-contenido p {
        font-size: 18px !important;
        line-height: 23px !important;
        font-weight: 300 !important;
        margin-bottom: 15px !important;
      }
      .modal-contenido a {
        text-decoration: none;
        color: #1d6bad;
      }

      /* Animación */
      @keyframes animarPopup {
        from {
          transform: translateY(-50px);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      /* Botón cerrar */
      .cerrar {
        color: #333;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
      }

      .cerrar:hover {
        color: #000;
      }
      .cky-consent-bar > div:nth-child(2),
      .cky-footer-wrapper:last-child {
        display: none;
      }