.santos-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-left: 3px solid #3498db;
    padding-left: 20px;
    margin-top: 20px;
}

.timeline-item {
    position: relative;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: #3498db;
    border-radius: 50%;
}

.timeline-date {
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

.timeline-img img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
}

.timeline-content {
    font-size: 16px;
    margin-bottom: 10px;
}

.timeline-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.timeline-button:hover {
    background-color: #2980b9;
}
