.footer-wrapper {
    background-color: #f6f6f6;
    font-family: 'Zen Kurenaido', 'Noto Sans TC', sans-serif;
    color: #333;
    border-top: 1px solid #ccc;
    padding: 3rem 1rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-inner > div {
    /* flex: 1 1 30%; */
    min-width: 240px;
}

.footer-title .title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-title .desc {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 1px;
}

.google-map {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 16px;
}

.google-map img {
    width: 24px;
    margin-top: 8px;
}

.social {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social .follow-text {
    font-weight: 600;
    font-size: 16px;
    margin-right: 0.5rem;
    letter-spacing: 1px;
}

.social a img {
    width: 48px;
    transition: transform 0.3s ease;
}

.social a img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-inner > div {
        max-width: 100%;
    }

    .google-map {
        justify-content: center;
    }

    .social {
        justify-content: center;
    }

    .social a img {
        width: 40px;
    }
}