footer {
    width: 100%;
    height: 100vh;
    background-color: rgb(229, 229, 229);

}

.footer-container {
    margin-top: 25vh;
}

/*營業時間*/
.footer-container .time{
    margin: 5%;
    padding-left: 15%;

}

/* 標題樣式*/
.footer-contact h3, .footer-social h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: black;
}

/* 文字樣式 */
.footer-contact p, .footer-social p {
    font-size: 16px;
    margin: 5px 0;
    color: black;
}

/* 版權宣告 */
.footer-copyright {
    border-top: 1px solid #555;
    padding-top: 10px;
    margin-top: 120px;
    font-size: 14px;
    color: black;
}

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