/* Education Section */
.education {
    background-color: var(--secondary-bg);
}

.timeline {
    margin-top: 48px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--subtle-color);
    top: 0;
    bottom: 0;
    left: 16px;
    opacity: 0.3;
}

.timeline-item {
    margin-bottom: 48px;
    padding-left: 48px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--highlight-color);
    left: 9px;
    top: 6px;
}

.timeline-date {
    font-weight: 600;
    color: var(--highlight-color);
    margin-bottom: 8px;
}

.timeline-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
}

.timeline-subtitle {
    color: var(--subtle-color);
    margin-bottom: 16px;
}





