.company-history-page .hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
}

.company-history-page .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.company-history-page .hero p {
    font-size: 1.2rem;
    color: #666;
}

.timeline {
    position: relative;
    padding: 30px 0;
    margin-bottom: 50px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #007bff;
}

.timeline-item {
    position: relative;
    padding: 30px 0 30px 100px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.timeline-image {
    margin-top: 20px;
}

.timeline-image img {
    width: 100%;
    border-radius: 5px;
    max-height: 300px;
    object-fit: cover;
}

.cta {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    margin: 0 20px;
    padding: 12px 30px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        margin: 10px;
        display: inline-block;
    }
} 