﻿body {
    box-sizing: border-box;
}

footer {
    background-color: #0957A4;
    color: #fff;
    
}
.footer-container {
    display: flex;
    justify-content: space-between;    
    margin: 0 auto;
    padding: 20px;
}

.footer-section {
    flex: 1;
   
}

    .footer-section h4 {
        margin-bottom: 10px;
    }

    .footer-section ul {
        list-style: none;
        color: orangered;
    }

        .footer-section ul li {
            margin-bottom: 5px;
            
        }

            .footer-section ul li a {
                color: #fff;
                text-decoration: none;
            }

                .footer-section ul li a:hover {
                    text-decoration: none;
                    color: orangered;
                }

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    background-color: #222;
}
.footer-section a:hover {
    color: orangered; /* Lighter gray on hover for subtle change */
    text-decoration: underline; /* Add underline for accessibility */
}

    .footer-bottom p {
        margin: 0;
    }
.footer-section .social-links {
    display: flex;
    gap: 10px;
}

    .footer-section .social-links li {
        display: inline;
    }

        .footer-section .social-links li a {
            color: #fff;
            text-decoration: none;
        }

            .footer-section .social-links li a:hover {
                
            }
            



