.roadmap-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
    position: relative;
}

.milestone {
    text-align: center;
    position: relative;
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.milestone p {
    font-size: 14px;
    font-weight: bold;
}

.roadmap-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #33c651;
    z-index: -1;
}
