footer p{
    font-family: 'Libre Bodoni', serif;
    font-size: 16px;
    letter-spacing: 5px;
}

footer.container-fluid {
    display: flex; /* 使用 Flexbox */
    justify-content: space-between; /* 元素之間均勻分布 */
    align-items: center; /* 垂直置中 */
    text-align: center; /* 文字置中 */
    padding: 20px; /* 添加內邊距 */
    background-color: #D9D9D9; /* 可選：背景顏色 */
}

footer .footer-title{
    text-align: left;
}

footer.container-fluid > div {
    max-width: 33%; /* 確保每個項目最大寬度，適合三列 */
}

footer .google-map{
    display: flex;
}

footer .social {
    display: flex; /* 使用 Flexbox */
    gap:1rem;
}

footer .social a img{
    width:80px;
}

@media (max-width: 930px){
    footer.container-fluid {
        display: block;
    }

    footer.container-fluid > div {
        max-width: 100%; /* 確保每個項目最大寬度，適合三列 */
        margin-bottom: 30px;
    }

    footer .google-map{
        display: block;
    }

    footer .social {
        display: block;
        gap:1rem;
    }
    
    footer .social a img{
        margin-right: 10px;
        width:60px;
    }

    footer .footer-title{
        text-align: center;
    }
}
