/* footer.css — стилі для підвалу сайту */

footer {
    background-color: #222;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

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

footer a:hover {
    text-decoration: underline;
}

footer .footer-menu {
    margin-bottom: 20px;
}

footer .footer-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
}

footer .footer-menu li {
    display: inline;
}