/* 移动端样式 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 8px 8px;
    }
    
    nav ul li a {
        font-size: 14px;
    }
    
    .banner {
        padding: 60px 0;
    }
    
    .banner h2 {
        font-size: 28px;
    }
    
    .banner p {
        font-size: 16px;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn, .payment-banner-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 200px;
    }
    
    .services, .about, .contact {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    .about-content, .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    /* 移动端：每屏显示一个服务卡片 */
    .service-slide {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    /* 移动端调整服务图标大小 */
    .service-icon {
        width: 200px;
        height: 200px;
    }
    
    .service-card h3 {
        font-size: 18px;
        min-height: 42px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 25px;
        padding: 0 10px;
        text-align: center;
        width: 100%;
    }
    
    .footer-column h3 {
        text-align: center;
    }
    
    .footer-column h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column ul {
        text-align: center;
        padding: 0;
    }
    
    .footer-column p {
        text-align: center;
    }
    
    .record-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .consultation {
        bottom: 15px;
        right: 15px;
    }
    
    .consultation-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .consultation-popup {
        width: 220px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }
    
    nav ul li {
        margin: 0 5px 5px;
    }
    
    .banner h2 {
        font-size: 24px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .footer-column h3 {
        font-size: 16px;
    }
    
    /* 移动端调整服务图标大小 */
    .service-icon {
        width: 180px;
        height: 180px;
    }
    
    .service-card h3 {
        font-size: 16px;
        min-height: 38px;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-column:last-child {
        margin-bottom: 0;
    }
}