
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: white;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Styles */
        .header {
            text-align: center;
            color: #2c3e50;
            position: relative;
        }
        
        .header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            position: relative;
            text-shadow: none;
        }
        
        .header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 20px;
            position: relative;
            opacity: 0.9;
        }
        
        .divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #e74c3c, #c0392b);
            margin: 20px auto 30px;
            border-radius: 2px;
        }
        
        /* Main Content Layout - 修复布局 */
        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
            align-items: stretch;
        }
        
        .contact-info {
            flex: 0 0 calc(50% - 10px);
            min-width: 300px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: flex;
            flex-direction: column;
        }
        
        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #e74c3c, #c0392b);
        }
        
        .contact-info h2 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 25px;
            position: relative;
        }
        
        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #e74c3c;
            border-radius: 3px;
        }
        
        .contact-info p {
            margin-bottom: 30px;
            color: #555;
            font-size: 1.05rem;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
            flex-grow: 1;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
        }
        
        .contact-text h4 {
            font-size: 1.1rem;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .contact-text p, .contact-text a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-text a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        
        .contact-image {
            flex: 0 0 calc(50% - 10px);
            min-width: 300px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 20px; /* 减少了内边距 */
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center; /* 垂直居中图片 */
            align-items: center; /* 水平居中图片 */
        }
        
        .contact-image img {
            width: 100%;
            height: auto; /* 让高度自适应 */
            max-height: 300px; /* 设置最大高度 */
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .contact-image:hover img {
            transform: scale(1.03);
        }
        
        .map-container {
            margin: 50px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
      
        /* Animation Enhancements */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .contact-info, .contact-image {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .contact-info {
            animation-delay: 0.2s;
        }
        
        .contact-image {
            animation-delay: 0.4s;
        }
        
        .map-container {
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
            opacity: 0;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .contact-info, .contact-image {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .header p {
                font-size: 1rem;
            }
        }
    