/*
 Theme Name: Divi Child
 Theme URI: https://www.elegantthemes.com/gallery/divi/
 Description: Divi Child Theme
 Author: Elegant Themes
 Author URI: https://www.elegantthemes.com
 Template: Divi
 Version: 1.0.1
*/

/* =Theme customization starts here
------------------------------------------------------- */

/* Footer Legal Menu - Horizontal Layout */
#footer-bottom .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#footer-info {
    float: none;
}

.footer-legal-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-nav li {
    margin: 0;
    padding: 0;
}

.footer-legal-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-legal-nav a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-legal-nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}