/* Footer */
.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #201E1F;
    color: white;
    text-align: center;
    padding: 5px 0;
    margin-top: auto;
}

.footer .footer-buttons {
    margin-top: 10px;
}

.footer .footer-buttons a {
    display: inline-block;
    margin: 0 10px;
}

.footer .footer-buttons img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer .footer-buttons img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}