/**
 * 关于我们页面特定样式
 */

/* 页面头部背景 - 紫色渐变 */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* 关于卡片 */
.about-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 20px;
}

.about-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 价值观网格 */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 10px;
}

.value-desc {
    color: #666;
    line-height: 1.6;
}

/* 联系信息区域 */
.contact-section {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    font-size: 32px;
}

.contact-text {
    text-align: left;
}

.contact-label {
    font-size: 14px;
    opacity: 0.8;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
}
