/* Additional styles for internal pages */
.page-header {
    background: transparent;
    padding: 140px 2rem 0;
    text-align: center;
}
.page-header h1 {
    margin-bottom: 0;
}
.content-section {
    padding: 3rem 2rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}
.history-timeline {
    position: relative;
    margin-top: 3rem;
}
.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #eef2ef;
    border-radius: 4px;
}
.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
}
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}
.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px #eef2ef;
    z-index: 1;
}
.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
}
.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}
.timeline-content p {
    color: var(--light-text);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .history-timeline::before {
        left: 20px;
    }
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }
    .timeline-dot {
        left: 20px;
    }
    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px;
    }
}
