.pt-50964702-wrapper {
    background-color: #ffffff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.pt-50964702-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    font-family: 'Inter', 'Neue Haas Grotesk', sans-serif;
}

.pt-50964702-step {
    display: flex;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pt-50964702-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pt-50964702-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 40px;
    position: relative;
}

.pt-50964702-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 18px;
    font-weight: 300;
    transition: all 0.4s ease;
    background: #ffffff;
    z-index: 2;
}

.pt-50964702-line {
    width: 1px;
    height: calc(100% + 60px);
    background-color: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 48px;
    z-index: 1;
    transition: background-color 0.4s ease;
}

.pt-50964702-step:last-child .pt-50964702-line {
    display: none;
}

.pt-50964702-content {
    flex: 1;
    padding-top: 10px;
}

.pt-50964702-text {
    color: #000000;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
    transition: transform 0.4s ease;
}

/* Hover Effects */
.pt-50964702-step:hover .pt-50964702-number {
    border-color: #000000;
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.pt-50964702-step:hover .pt-50964702-line {
    background-color: rgba(0, 0, 0, 0.4);
}

.pt-50964702-step:hover .pt-50964702-text {
    transform: translateX(10px);
}

/* Responsive */
@media (max-width: 768px) {
    .pt-50964702-marker {
        margin-right: 20px;
    }
    .pt-50964702-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .pt-50964702-line {
        top: 36px;
        height: calc(100% + 60px);
    }
    .pt-50964702-text {
        font-size: 16px;
    }
    .pt-50964702-container {
        gap: 40px;
    }
}
