﻿        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }
        
        .contact-card {
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #e1e5eb;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .contact-header {
            background: #195072;
            color: white;
            padding: 18px;
            text-align: center;
        }
        
        .contact-name {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 4px;
        }
        
        .contact-title {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.4;
        }
        
        .contact-body {
            padding: 22px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .contact-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .contact-icon {
            width: 36px;
            height: 36px;
            background: #f0f8ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 14px;
            color: #1682c6;
            font-size: 16px;
            flex-shrink: 0;
        }
        
        .contact-details {
            flex: 1;
        }
        
        .contact-label {
            font-size: 13px;
            color: #666;
            margin-bottom: 4px;
            font-weight: 600;
            text-transform:capitalize;
            letter-spacing: 0.5px;
        }
        
        .contact-value {
            font-size: 16px;
            font-weight: 500;
            line-height: 1.4;
            color: #333;
        }
        
        .wechat-section {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px dashed #ddd;
        }
        
        .wechat-title {
            font-size: 16px;
            color: #1682c6;
            font-weight: 700;
            margin-bottom: 14px;
        }
        
        .qr-code {
            width: 150px;
            height: 150px;
            margin: 0 auto;
            background: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e9ecef;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #888;
            padding: 15px;
        }

        
        .qr-icon {
            font-size: 48px;
            margin-bottom: 10px;
            color: #1682c6;
        }
        
        .qr-text {
            font-size: 13px;
            line-height: 1.4;
        }
        
        .wechat-id {
            font-size: 14px;
            margin-top: 12px;
            color: #555;
            font-weight: 500;
        }
        
        .company-info {
            background: #ffffff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #e1e5eb;
            text-align: center;
        }
        
        .company-name {
            font-size: 28px;
            color: #1682c6;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .company-details {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 22px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .company-item {
            display: flex;
            align-items: flex-start;
            width: 100%;
        }
        
        .company-icon {
            width: 40px;
            height: 40px;
            background: #f0f8ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            color: #1682c6;
            font-size: 18px;
            flex-shrink: 0;
        }
        
        .company-text {
            text-align: left;
            flex: 1;
        }
        
        .company-label {
            font-size: 16px;
            color: #1682c6;
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.3;
        }
        
        .company-value {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .company-name {
                font-size: 24px;
            }
            
            .company-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .company-icon {
                margin-right: 0;
                margin-bottom: 12px;
            }
            
            .company-text {
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .contact-container {
                padding: 15px;
            }
            
            .contact-body {
                padding: 18px;
            }
            
            .company-info {
                padding: 20px;
            }
        }