/* Core Footer Styles - These styles will always be applied to the footer */
.footer-wrapper {
    /* Use a specific class to scope footer styles */
    position: relative;
    z-index: 90; /* Below header but above regular content */
}

/* Prevent page styles from affecting footer elements */
.footer-wrapper * {
    box-sizing: border-box;
}

/* Basic footer container styles */
.footer-container {
    padding: 20px 0;
}

/* Footer logo styling */
.footer-wrapper .footer-logo {
    max-width: 300px;
    margin-bottom: 20px;
}

/* Footer navigation */
.footer-wrapper .footer-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-wrapper .footer-nav li {
    margin: 0 15px;
    padding: 0;
}

.footer-wrapper .footer-nav li a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.footer-wrapper .footer-nav li a:hover {
    text-decoration: underline;
}
