/* Contact Us Page Styles */
.main-content {
    min-height: calc(100vh - 80px);
    padding: 40px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 页面标题样式 */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px 0;
}

.page-header h1 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header .page-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

/* 左侧联系信息样式 */
.contact-info {
    background: white;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.info-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* 右侧地图样式 */
.map-section {
    background: white;
    overflow: hidden;
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header .page-subtitle {
        font-size: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .info-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .info-content h3 {
        font-size: 16px;
    }
    
    .info-content p {
        font-size: 14px;
    }
    
    .map-container {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header .page-subtitle {
        font-size: 0.9rem;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-info {
        padding: 20px 15px;
    }
    
    .info-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
}
