    /* 企业文化区域 */
    .culture-section {
        padding: 20px 0 60px;
    }

    .section-header {
        margin-bottom: 40px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
        color: var(--text-dark);
        margin-bottom: 10px;
    }

    .section-header p {
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
    }

    /* 企业简介 */
    .company-intro {
        background: white;
        border-radius: 10px;
        padding: 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 60px;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
    }

    .intro-image {
        flex: 1;
        min-width: 300px;
        border-radius: 10px;
        overflow: hidden;
    }

    .intro-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .intro-content {
        flex: 2;
        min-width: 300px;
    }

    .intro-content h3 {
        font-size: 1.6rem;
        color: var(--primary-color);
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--accent-color);
        display: inline-block;
    }

    .intro-content p {
        margin-bottom: 15px;
        line-height: 1.8;
    }

    /* 核心价值观 */
    .values-section {
        margin-bottom: 60px;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .value-card {
        background: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        text-align: center;
    }

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .value-icon {
        width: 80px;
        height: 80px;
        background: rgba(231, 76, 60, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .value-icon i {
        font-size: 2.5rem;
        color: var(--accent-color);
    }

    .value-card h3 {
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .value-card p {
        color: var(--text-light);
        line-height: 1.7;
    }

    /* 发展历程 */
    .timeline-section {
        margin-bottom: 60px;
    }

    .timeline {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px 0;
    }

    .timeline::after {
        content: '';
        position: absolute;
        width: 6px;
        background-color: var(--border-color);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -3px;
        border-radius: 3px;
    }

    .timeline-item {
        padding: 10px 40px;
        position: relative;
        width: 50%;
        box-sizing: border-box;
    }

    .timeline-item::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background-color: white;
        border: 4px solid var(--accent-color);
        top: 20px;
        border-radius: 50%;
        z-index: 1;
    }

    .timeline-left {
        left: 0;
    }

    .timeline-right {
        left: 50%;
    }

    .timeline-left::after {
        right: -13px;
    }

    .timeline-right::after {
        left: -13px;
    }

    .timeline-content {
        padding: 20px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .timeline-year {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--accent-color);
        margin-bottom: 10px;
    }

    .timeline-content h3 {
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .timeline-content p {
        color: var(--text-light);
    }

    /* 团队文化 */
    .team-section {
        margin-bottom: 60px;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .team-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .team-image {
        height: 250px;
        overflow: hidden;
    }

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .team-card:hover .team-image img {
        transform: scale(1.05);
    }

    .team-info {
        padding: 20px;
        text-align: center;
    }

    .team-info h3 {
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .team-position {
        color: var(--accent-color);
        font-size: 0.9rem;
        margin-bottom: 15px;
        display: block;
    }

    .team-bio {
        color: var(--text-light);
        font-size: 0.9rem;
    }

    /* 企业活动 */
    .activities-section {
        margin-bottom: 60px;
    }

    .activities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .activity-item {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        position: relative;
        height: 250px;
    }

    .activity-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .activity-item:hover img {
        transform: scale(1.05);
    }

    .activity-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 20px;
        color: white;
    }

    .activity-overlay h3 {
        margin-bottom: 5px;
    }

    .activity-date {
        font-size: 0.85rem;
        opacity: 0.9;
    }

    /* 响应式设计 */
    @media (max-width: 992px) {
        .timeline::after {
            left: 31px;
        }

        .timeline-item {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }

        .timeline-left::after,
        .timeline-right::after {
            left: 18px;
        }

        .timeline-right {
            left: 0;
        }
    }

    @media (max-width: 768px) {
        .company-intro {
            padding: 25px;
        }

        .section-header h2 {
            font-size: 1.7rem;
        }

        .intro-content h3 {
            font-size: 1.4rem;
        }
    }

    @media (max-width: 576px) {
        .page-banner h1 {
            font-size: 1.8rem;
        }

        .section-header h2 {
            font-size: 1.5rem;
        }

        .values-grid,
        .team-grid,
        .activities-grid {
            grid-template-columns: 1fr;
        }

        .company-intro {
            padding: 20px;
        }

        .intro-image,
        .intro-content {
            min-width: 100%;
        }
    }