/* Footer Section Styling */
.footer-section {
    color: #0056b3;
    /*padding: 20px 0;*/
}

.footer-content {
    position: relative;
    z-index: 2;
    /*max-width: 600px;*/
    margin: 0 auto;
}

.footer-links {
    /*margin-top: 20px;*/
    text-align: center;
}

.footer-links a {
    margin: 0 5px;
    color: #007ee5; /* Blue */
    font-size: 14px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #0056b3;
    left: 50%;
    bottom: -5px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0056b3;
}

.footer-links a:hover::after {
    left: 0;
    width: 100%;
}

.footer-copyright {
    font-size: small;
    margin-top: 20px;
    text-align: center;
}