.achievement-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 90px;
}

.achievement-list {
    position: relative;
}

.achievement-list::before {
    content: '';
    position: absolute;
    left: 6px;
    top: -11px;
    bottom: -14px;
    width: 2px;
    background-color: #9E0D30;
    z-index: 5;
}

.achievement-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.achievement-bullet {
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    background-color: #9E0D30;
    border-radius: 50%;
    z-index: 10;
}

.achievement-arrow {
    position: absolute;
    left: 18px;
    top: 0;
    font-size: 18px;
    color: #9E0D30;
    font-weight: bold;
    z-index: 8;
}

.achievement-bullet::after {
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    width: 21px;
    height: 21px;
    border: 2px solid transparent;
    border-radius: 50%;
    background-color: transparent;
    z-index: 9;
    transition: border-color 0.3s ease;
}

.achievement-item p {
    padding-left: 20px;
    font-family: DM Sans, DM Sans;
    font-weight: 400;
    font-size: 23px;
    color: #000000;
    line-height: 1.8;
    text-align: justify;
}

.achievement-item:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.achievement-item:hover p {
    color: #900B09;
    transition: color 0.3s ease;
}

.achievement-item:hover .achievement-bullet::after {
    border-color: #9E0D30;
}
