#privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    z-index: 99999;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: block; /* Fallback without JS */
}

#privacy-banner h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

#privacy-banner p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
}

#privacy-banner p a {
    text-decoration: underline;
    color: #007bff;
}

#privacy-banner .btn {
    font-weight: 500;
    padding: 5px 15px;
}

/* Prevent overlap with page content */
body.has-privacy-banner {
    padding-bottom: 120px;
}
@media (max-width: 768px) {
    body.has-privacy-banner {
        padding-bottom: 180px;
    }
}
