/* Добавь это в блок <style> */

/* Новый стиль для секции опыта с временной шкалой */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px; /* Отступ для линии */
}

/* Вертикальная линия */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #4CAF50;
    top: 0;
    bottom: 0;
    left: 10px;
}

/* Стили для каждого элемента временной шкалы */
.timeline-item {
    position: relative;
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: left;
}

.timeline-item:hover {
    transform: translateX(5px); /* Сдвиг вправо при наведении */
}

/* Кружок на линии */
.timeline-item::before {
    content: '●'; /* Кружок как маркер */
    position: absolute;
    left: -15px; /* Расположение на линии */
    top: 25px;
    font-size: 18px;
    color: #4CAF50;
    z-index: 1;
}

.timeline-item h3 {
    margin-top: 0;
    color: #333;
}

.timeline-item p {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #666;
}

/* Стили для заголовков "Also" */
.timeline .also-heading {
    margin-top: 15px;
    font-size: 1.1em;
    font-style: italic;
    color: #666;
}