.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    width: 100%;
    margin-left: 5%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-top {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.footer-logo img {
    width: 80px;
}

.footer-title {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    text-align: left;
}

.footer-right {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-qr {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-qr img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-links {
    width: 100%;
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    width: 100%;
    text-align: left;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.copyright-badge {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .footer {
        margin-top: 30px;
    }
    .footer-container {
        margin: 0 auto !important;
        padding: 0 15px;
    }
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    .footer-copyright {
        font-size: 11px;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }
}