/* footer */
.footer {
    background-color: #081833;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1500px;
    flex-wrap: wrap; 
    gap: 40px;
}

.footer-logo {
    width: 200px; 
    height: auto;
    /*margin-right: 100px;*/
}

.footer-content {
    font-family: "Noto Serif TC","Noto Sans TC", sans-serif;
    font-size: larger;
    text-align: left;
    line-height: 1.6;
    color: burlywood;
    justify-content: center;
    display: flex;
    align-items: center; 
    width: 80%;
    max-width: 1500px;
    gap: 20px;
}

.footer-bottom {
    background-color: #081833;
    text-align: center;
    font-size: 14px;
    color: #666;
    padding-top: 10px;  
}

/* 台北所 */
/*.text1{ margin-right: 100px; }*/

/* 資訊列地址的超連結 */
.location1, .location2{
    color: burlywood;
    text-decoration: none;
}

/*
.location1 :hover,.location2:hover {
    color:#f5f5f5;
    text-decoration: none;
}
*/
@media screen and (max-width: 800px) {
    .footer{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer-content {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        width: 90%;
        max-width: 500px;
    }
    .footer-logo {
        margin-bottom: 10px;
    }
}