/* Footer container styles */
.footer-container {
    background-color: #2e2e2e; /* Blackish grey background, similar to navbar */
    padding: 10px 0; /* Padding to give some breathing room */
    text-align: center; /* Center the footer content */
}

/* Footer list styling */
.footer-list {
    list-style: none; /* Remove default list style */
    padding: 0;
    margin: 0;
    display: flex; /* Makes the list horizontal */
    justify-content: center; /* Center the list items */
}

/* Footer list items */
.footer-list li {
    margin: 0 15px; /* Spacing between each item */
}

/* Footer link styles */
.footer-list a {
    color: #bfbfbf; /* Lighter grey text */
    text-decoration: none; /* Remove underline */
    font-size: 14px; /* Adjust size as necessary */
}

/* Change link color on hover */
.footer-list a:hover {
    color: #ffffff; /* White text on hover */
}