/* 頁腳樣式 */
footer {
    text-align: center;
    padding: 20px;
    background: #0056b3;
    color: white;
    font-size: 14px;
    margin-top: 40px;
}

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

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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    flex: 1;
    text-align: left;
    font-size: 14px;
}

/* Facebook 容器 */
.fb-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.fb-page {
    max-width: 340px;
    overflow: hidden;
}

/* 響應式設計：手機版 */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .fb-container {
        flex-direction: column;
        align-items: center;
    }
}