.contact-info-cards {
            background: #f9fafb;
        }
        .rowarp {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 60px 40px;
            max-width: 1600px;
            margin: 0 auto;
        }
        .contact-info-card {
            background: #fff;
            padding: 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            position: relative;
            background: #e6e6e6;
        }
        .contact-info-card-icon {
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .contact-info { 
            width: 65%;
            display: inline-block;
            text-align: left;
            padding: 0 30px;
        }
        .contact-info-card h3 {
            font-size: 20px;
            color: #1f2937;
            margin-bottom: 12px;
        }
        .contact-info-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .contact-info-card .phone {
            font-size: 24px;
            color: #295b9e;
            font-weight: 600;
            margin: 12px 0;
        }
        .contact-info-card .url {
            font-size: 16px;
            color: #295b9e;
            margin: 12px 0;
        }
        .contact-info-card .qrcode{
            width: 120px; 
            height: 120px;
            position: absolute; 
            right: 20px; 
            bottom: 20px;
        }
        .contact-info-card .qrcode img {
            max-width: 90%;
            margin: 0 auto;
        }
        .map-section {
            padding: 40px;
            background: #fff;
        }
        .map-section h3 {
            font-size: 18px;
            color: #295b9e;
            margin-bottom: 20px;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        .map-address {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }
        .map-container {
            width: 100%;
            height: 500px;
            background: #f3f4f6;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .cooperation-section {
            padding: 60px 40px;
            background: #fff;
        }
        .cooperation-title {
            font-size: 24px;
            color: #1f2937;
            margin-bottom: 12px;
        }
        .cooperation-note {
            font-size: 14px;
            color: #999;
            margin-bottom: 30px;
        }
        .cooperation-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .cooperation-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 24px;
            transition: all 0.3s ease;
            cursor: pointer;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .cooperation-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-color: #295b9e;
            transform: translateY(-2px);
        }
        .cooperation-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        .cooperation-card-title {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
        }
        .cooperation-card-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
        }
        .cooperation-card-icon i { 
            font-size: 30px;
        }
        .cooperation-card-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
        
        @media (max-width: 992px) {
            .contact-info-cards {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .contact-info-cards {
                padding: 40px 20px;
            }
            
            .contact-info-card {
                padding: 30px 20px;
            }
            
            .contact-info-card-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .contact-info-card h3 {
                font-size: 18px;
            }
            
            .contact-info-card .phone {
                font-size: 20px;
            }
            
            .map-section {
                padding: 30px 20px;
            }
            
            .map-container {
                height: 300px;
            }
            
            .cooperation-section {
                padding: 40px 20px;
            }
            
            .cooperation-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }