/* Footer Styles */
.footer-section {
    background: #00689A;
    color: white;
    padding: 3rem 2rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

/* Logo與地址欄樣式 - 左側 */
.footer-logo-address-column {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-left-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-logo-footer {
    width: 60px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-company-info {
    display: flex;
    flex-direction: column;
}

.footer-address {
    margin: 0.6rem 0 0.1rem 0;
    font-size: 0.85rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact {
    margin: 0.1rem 0;
    font-size: 0.85rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}

/* 聯絡資訊欄樣式 - 右側 */
.footer-contact-column {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-links-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-separator {
    color: white;
    font-size: 1rem;
    margin: 0 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    color: rgba(255,255,255,0.7);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo-address-column {
        justify-content: center;
    }
    
    .footer-left-content {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .footer-company-info {
        text-align: center;
    }
    
    .footer-contact-column {
        justify-content: center;
    }
    
    .footer-links-container {
        justify-content: center;
    }
    
    .footer-section {
        padding: 2rem 1rem 1rem;
    }
}

@media (max-width: 576px) {
    .company-logo-footer {
        width: 60px;
    }

    .footer-address,
    .footer-contact {
        font-size: 0.8rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .company-logo-footer {
        width: 60px;
    }

    .footer-company-info {
        font-size: 0.8rem;
    }

    .footer-section-title {
        font-size: 1.1rem;
    }
}