.hiw-container-4ff53851 {
    padding: 40px 0;
    font-family: inherit;
    overflow: hidden;
}
.hiw-section-title {
    text-align: center;
    margin-bottom: 60px;
}
.hiw-timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}
.hiw-timeline-line {
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #000;
    opacity: 0.2;
}
.hiw-timeline-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.hiw-timeline-item.hiw-visible {
    opacity: 1;
    transform: translateY(0);
}
.hiw-timeline-item:last-child {
    margin-bottom: 0;
}
.hiw-timeline-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #000;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8);
}
.hiw-step-content {
    background: transparent;
}
.hiw-step-number {
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000;
    margin-bottom: 8px;
    opacity: 0.7;
}
.hiw-step-title {
    margin: 0 0 12px;
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.3;
}
.hiw-step-desc {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hiw-timeline-wrapper {
        padding-left: 0;
    }
    .hiw-timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
    .hiw-timeline-item {
        width: 50%;
        padding-right: 50px;
        text-align: right;
    }
    .hiw-timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-right: 0;
        padding-left: 50px;
        text-align: left;
    }
    .hiw-timeline-item::before {
        left: 100%;
        transform: translateX(-50%);
    }
    .hiw-timeline-item:nth-child(even)::before {
        left: 0;
    }
}