footer {
    background: #100E10;
    color: #e0D6CC;
    padding: 24px 40px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer span {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.footer-links a {
    color: #e0D6CC;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.icon {
    width: 20px;
    height: 20px;
    fill: #e0D6CC;
    transition: fill 0.3s ease, transform 0.2s ease;
}

.footer-links a:hover .icon {
    fill: #955643;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
