/* about.css - 关于我们特定样式 */

.about-hero {
    background-image: url('../images/hero.jpg'); /* 替换为你的关于我们页背景图 */
}

.story-section {
    padding: 80px 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    color: #6a8e7a;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    text-align: center;
}

.story-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-section {
    padding: 80px 0;
    text-align: center;
    background-color: #eef5f0;
}

.team-section h2 {
    color: #6a8e7a;
    margin-bottom: 20px;
}

.team-section .section-description {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #6a8e7a;
}

.team-member h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.4em;
}

.team-member p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 10px;
}

.milestones-section {
    padding: 80px 0;
    text-align: center;
}

.milestones-section h2 {
    color: #6a8e7a;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #6a8e7a;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-date {
    width: 150px;
    text-align: center;
    font-weight: bold;
    color: #6a8e7a;
    font-size: 1.2em;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    border: 2px solid #6a8e7a;
    z-index: 1;
}

.timeline-content {
    width: calc(50% - 100px); /* 减去日期宽度和间距 */
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    font-size: 1em;
    line-height: 1.7;
}

/* Responsive adjustments for about page */
@media (max-width: 992px) {
    .story-section {
        flex-direction: column;
        text-align: center;
    }
    .story-image {
        margin-top: 30px;
    }
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .timeline::before {
        left: 20px; /* 移动到左侧 */
        transform: translateX(0);
    }
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 40px; /* 为时间线留出空间 */
    }
    .timeline-item:nth-child(odd) {
        flex-direction: column; /* 保持一致 */
    }
    .timeline-date {
        left: 20px;
        transform: translateX(-50%);
        top: -10px; /* 调整位置 */
        text-align: left;
        width: auto;
        padding: 5px 10px;
    }
    .timeline-content {
        width: 100%;
        text-align: left;
        margin-top: