
/* Privacy footer styles */
.privacy-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    text-align: center;
    padding: 5px 0;
    z-index: 1000; /* Ensure it's above other elements */
}

.privacy-footer a {
    color: white; /* White text for the link */
    text-decoration: none; /* No underline */
    font-size: 13px;
}

.privacy-footer a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .privacy-footer {
        padding: 15px 0;
        font-size: 13px; /* Adjust font size */
    }
}