.page-header {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 公司简介部分 */
.company-intro {
    padding: 60px 0;
}

.company-intro .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
}

.intro-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.company-stats {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 企业价值观部分 */
.our-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.our-values h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.value-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 团队部分 */
.team-section {
    padding: 80px 0;
}

.team-section h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.section-desc {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-area {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-area img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.team-area h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.team-area p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 联系我们部分 */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.contact-content {
    flex: 1;
}

.contact-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item i {
    font-size: 24px;
    color: #0066cc;
}

.info-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .company-intro .container {
        flex-direction: column;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-section .container {
        flex-direction: column;
    }

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .company-stats {
        flex-direction: column;
        gap: 20px;
    }
}
