
        /* 独立的样式，不会影响其他页面元素 */
        .contact-container {
            font-family: Arial, sans-serif;
            max-width: 800px;
            margin: 20px auto;
            padding: 25px;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .contact-header {
            color: #333;
            font-size: 28px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e1e1e1;
        }
        
        .company-name {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .contact-method {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-label {
            font-weight: bold;
            min-width: 100px;
            color: #555;
        }
        
        .contact-email, .contact-whatsapp {
            color: #0066cc;
            text-decoration: none;
            margin-right: 15px;
            transition: color 0.3s;
        }
        
        .contact-email:hover, .contact-whatsapp:hover {
            color: #004499;
            text-decoration: underline;
        }
        
        @media (max-width: 600px) {
            .contact-method {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .contact-label {
                margin-bottom: 5px;
            }
        }
    