  #cookie-consent {
            position: fixed;
            bottom: 25px;
            left: 25px;
            right: 25px;
            background: #fff;
            color: #42494d;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            z-index: 9999;
            gap:16px;
        }

        #cookie-consent.show {
            opacity: 1;
            transform: translateY(0);
        }
        #cookie-consent a{
            margin-left: 5px;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
        } 
        #cookie-consent p{
            margin-bottom:0;
            font-size:16px;
        }
          #cookie-consent  button{
              min-width:105px;
          }
        
        @media screen and (max-width:749px){
            #cookie-consent p{
            font-size:14px;width: 100%;
    text-align: center;

        }
          #cookie-consent {
              flex-direction:column;
          }
        }