/* Timeline Styles */
.company-history {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 102, 164, 0.1);
}

.company-history h3 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.company-history h3:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.history-timeline {
    position: relative;
    padding-left: 40px;
    margin-left: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 40px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-dot {
    position: absolute;
    left: -52px;
    top: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 160, 227, 0.6);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 160, 227, 0.8);
}

.timeline-content {
    padding: 20px 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--light-color);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* 确保荷兰语版本与英文版本保持一致 */
.nl-content .company-history h3,
.nl-content .timeline-content h4,
.nl-content .timeline-content p {
    font-family: 'Poppins', sans-serif;
}