p.cky-title {
        position: static;   /* disables absolute positioning */
        transform: none;    /* removes centering */
        left: auto;         /* reset */
        top: auto;          /* reset */
        text-align: center; /* optional: keep it centered via text-align */
    }

/* When screen width is 1400px or wider → reset to normal flow */
@media (min-width: 1500px) {
    .cky-consent-bar {
        position: relative;
    }

    p.cky-title {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 45%; /* Adjust as needed */
        margin-bottom: 0 !important;
        padding: 0;
    }
}