/* footer.css */
footer {
    background-color: #f8f9fa; /* Light gray background */
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #6c757d; /* Muted gray text */
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    color: #0056b3;
    text-decoration: underline;
}