/* Add styles for the footer legal links */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus {
    color: #fff;
    text-decoration: underline;
}

/* Cookie settings link specific style */
.cookie-settings-link {
    cursor: pointer;
}

/* Responsive adjustments */
@media screen and (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-legal-links {
        margin-top: 0;
    }
} 