
.footer {
    background: #003C6E;
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 0px;
    border-top: 10px solid #FDBD36;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 40% 15% 40%;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin-bottom: 0px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.brand-text {
    color: #E6DEB8;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.footer-contact-section {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.qrcode-area {
    flex-shrink: 0;
}

.qr-code {
    width: 140px;
    height: 140px;
    border: 2px solid #DCAB40;
    border-radius: 8px;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.contact-item i {
    color: #DCAB40;
    font-size: 25px;
    width: 25px;
    flex-shrink: 0;
}

.contact-label {
    color: #ffffff;
    font-size: 20px;
}

.contact-value {
    color: #DCAB40;
    text-decoration: none;
    font-weight: 600;
    font-size: 23px;
    transition: opacity 0.3s ease;
}

.contact-value:hover {
    opacity: 0.8;
}

.line-stats {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    text-align: left;
}

.stat-label {
    color: #ffffff;
    font-size: 20px;
}

.stat-label::after {
    content: "：";
}

.stat-number {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.footer-services {
    display: flex;
    flex-direction: column;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #DCAB40;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-decoration: none;
    border-bottom: none;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 2px solid #DCAB40;
    border-radius: 50%;
    color: #DCAB40;
    background-color: transparent;
}

.icon-circle i {
    font-size: 14px;
}

.service-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-menu li {
    margin-bottom: 17px;
    position: relative;
    padding-left: 15px;
}

.service-menu li::before {
    content: "•";
    color: #DCAB40;
    position: absolute;
    left: 0;
    top: 0;
}

.service-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.service-menu a:hover {
    color: #DCAB40;
}

.footer-notice {
    display: flex;
    flex-direction: column;
}

.footer-notice .section-title {
    color: #DCAB40;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-notice .section-title i {
    font-size: 18px;
    margin-right: 10px;
}

.notice-content {
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

.notice-content p {
    margin-bottom: 5px;
    text-align: justify;
}

.footer-bottom {
    border-top: 1px solid #ffffff85;
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    color: #999999;
    font-size: 14px;
    line-height: 1.6;
}

.footer-copyright p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 4px;
}

.footer-copyright p span {
    white-space: nowrap;
    margin: 0 2px;
}

.footer-copyright i {
    color: #999999;
    font-size: 14px;
}

.footer-copyright a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #DCAB40;
}


@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        align-items: center;
    }
    
    .footer-contact-section {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .contact-item .contact-value {
        flex-basis: 100%;
        margin-left: 0;
        text-align: center;
    }
    
    .line-stats {
        justify-content: center;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
    
    .brand-text {
        font-size: 17px;
        text-align: center;
    }
    
    .qr-code {
        width: 100px;
        height: 100px;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: center;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-item .contact-value {
        flex-basis: 100%;
        margin-left: 0;
        text-align: center;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .notice-content {
        font-size: 20px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .footer-copyright p {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        flex-wrap: wrap;
    }
    
    .footer-copyright p span {
        white-space: normal;
    }
}