/* ========================================
   LEGAL LINKS STYLES FOR RGPD COMPLIANCE
   ======================================== */

.rgpd-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 14px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto; /* Push to bottom with flexbox */
    width: 100%;
}

.rgpd-footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.rgpd-footer-link {
    color: #000000; /* Dark color for visibility */
    text-decoration: none;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7); /* White text shadow for visibility */
    transition: color 0.3s ease;
}

.rgpd-footer-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.rgpd-footer-copyright {
    color: #333333; /* Dark color for copyright text */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7); /* White text shadow for visibility */
    margin-top: 10px;
    font-size: 12px;
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 768px) {
    .rgpd-footer {
        padding: 15px 10px;
        flex-direction: column;
    }
    
    .rgpd-footer-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .rgpd-footer-link {
        font-size: 13px;
    }
    
    .rgpd-footer-copyright {
        font-size: 11px;
        margin-top: 15px;
    }
}