/* 联系我们页面样式 */
.contact-page {
    padding: 80px 0;
    background: #f8f5f0;
}

.contact-card {
    background: #a17345;
    border-radius: 12px;
    padding: 60px;
    color: #fff;
    position: relative;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.3);
}

.contact-card h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-buttons {
    margin-bottom: 30px;
}

.contact-btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.contact-btn::after {
    content: '>';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
}

.service-features {
    margin-bottom: 40px;
}

.service-feature {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.qr-code {
    background: #fff;
    border-radius: 20px;
    max-width:100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.qr-code img {
    width: 240px;
    height: 240px;
    margin-bottom: 12px;
    object-fit: cover;
}

.qr-code p {
    font-size: 13px;
    color: #333;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.certifications {
    margin-top: 40px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cert-item {
    display: inline-block;
    margin: 0 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.cert-item::before {
    content: '●';
    margin-right: 5px;
    font-size: 8px;
    color: #CD853F;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-card {
        padding: 40px 30px;
    }
    
    .contact-card h2 {
        font-size: 24px;
    }
    
    .contact-card p {
        font-size: 14px;
    }
    
    .contact-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .contact-btn i {
        font-size: 16px;
    }
    
    .qr-code {
        margin: 30px auto 0;
        max-width: 180px;
        padding: 15px;
    }
    
    .qr-code img {
        width: 130px;
        height: 130px;
    }
    
    .qr-code p {
        font-size: 12px;
    }
    
    .cert-item {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-card h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .contact-card p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .contact-buttons {
        margin-bottom: 20px;
    }
    
    .contact-btn {
        padding: 10px 12px;
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .service-features {
        margin-bottom: 30px;
    }
    
    .service-feature {
        font-size: 12px;
        margin-right: 15px;
    }
    
    .qr-code {
        margin: auto;
        max-width: 235px;
        padding: 12px;
    }
    
    .qr-code img {
        width: 200px;
        height: 200px;
    }
    
    .qr-code p {
        font-size: 11px;
    }
    
    .certifications {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .cert-item {
        font-size: 16px;
        margin: 8px 0;
    }
}
