* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
    padding: 40px;
}

.container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.column {
    flex: 1;
}

.column h2 {
    color: #4d7ea8;
    font-size: 22px;
    margin-bottom: 30px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #d96d5f;
}

.item {
    position: relative;
    margin-bottom: 40px;
}

.dot {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid #d96d5f;
    border-radius: 50%;
}

.content h3 {
    font-size: 16px;
    color: #1f3c5a;
    margin-bottom: 5px;
}

.date {
    display: block;
    color: #6d6d6d;
    font-size: 13px;
    margin-bottom: 5px;
}

.location {
    font-style: italic;
    color: #777;
    font-size: 13px;
    margin-bottom: 10px;
}

.content p,
.content li {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

.content ul {
    padding-left: 18px;
    margin-top: 8px;
}

.content li {
    margin-bottom: 6px;
}