/* Contact Section Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: start;
}

.contact-wechat {
    grid-column: 1 / 2;
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    grid-column: 2 / 3;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-wechat h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.wechat-qr {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.wechat-qr img {
    max-width: 200px;
    border-radius: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wechat {
        grid-column: 1;
        order: 1;
    }
    
    .contact-form {
        grid-column: 1;
        order: 2;
        margin-top: 30px;
    }
    
    .wechat-qr img {
        max-width: 180px;
    }
}
