footer {
    background-color: #b58005;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    font-size: 0.9em;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer p {
    margin: 0;
}

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

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

.social {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.social img {
    width: 32px;
    height: auto;
    transition: transform 0.3s ease;
}

.social img:hover {
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .social {
        gap: 10px;
    }

    .social img {
        width: 28px;
    }
}