
.footer-watermark {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}

.footer-watermark img {
    max-width: 220px;
}

.footer {
    border-top: 1px solid gray;
    padding: 18px 10px;
    font-size: 14px;
    color: #666;
    background: #f7f7f7;
}

.footer-content {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 600px) {

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

.footer a {
    color: gray;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: bold;
}

.footer a:hover {
    color: gray;
    text-decoration: underline;
}