.main-footer {
    background: linear-gradient(90deg, #fffbe7 60%, #ffe0b2 100%);
    border-top: 2px solid #ff9800;
    padding: 32px 0 10px 0;
    margin-top: 48px;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-shadow: 0 -2px 18px rgba(255,152,0,0.07);
}
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(255,152,0,0.10);
}
.footer-title {
    font-size: 1.3em;
    color: #e65100;
    font-weight: bold;
    letter-spacing: 1px;
}
.footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
.footer-links a {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.08em;
    transition: color 0.2s;
    position: relative;
}
.footer-links a:hover {
    color: #e65100;
}
.footer-social {
    display: flex;
    gap: 18px;
}
.footer-social-link img {
    width: 28px;
    height: 28px;
    filter: grayscale(0.2) brightness(0.95);
    transition: filter 0.2s, transform 0.2s;
}
.footer-social-link:hover img {
    filter: none;
    transform: scale(1.13) rotate(-6deg);
}
.footer-copy {
    color: #888;
    font-size: 1em;
    margin-top: 18px;
    text-align: center;
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 0 2vw;
    }
    .footer-links {
        gap: 14px;
        margin-bottom: 6px;
    }
    .footer-social {
        gap: 12px;
    }
}