/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #003366 0%, #002244 100%);
}

.footer-links a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00CCCC;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}