.history-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    width: 120px;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    flex-shrink: 0;
    z-index: 2;
}

.timeline-content {
    margin-left: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    flex: 1;
}

.timeline-item.current .timeline-year {
    background: var(--accent-color);
}

.timeline-details {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.timeline-details li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.timeline-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.company-facts {
    margin: 4rem 0;
    text-align: center;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fact-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.fact-label {
    color: #6b7280;
    margin-top: 0.5rem;
}

.legal-info {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 4rem;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.legal-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.legal-note {
    text-align: center;
    color: #6b7280;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-year {
        width: 60px;
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
}
