.pt-28a35658-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    align-items: flex-start;
}

/* Connecting Line */
.pt-28a35658-container::before {
    content: '';
    position: absolute;
    top: 45px; /* Half of default 90px node */
    left: 5%;
    right: 5%;
    height: 1px;
    background-color: #3b5b7b;
    z-index: 0;
}

.pt-28a35658-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pt-28a35658-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #4a6b8c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.pt-28a35658-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pt-28a35658-icon i {
    font-size: 24px;
}

.pt-28a35658-icon svg {
    width: 24px;
    height: 24px;
}

.pt-28a35658-number {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 8px;
    font-weight: 500;
}

.pt-28a35658-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.pt-28a35658-desc {
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 767px) {
    .pt-28a35658-container {
        flex-direction: column;
    }
    
    .pt-28a35658-container::before {
        top: 0;
        bottom: 0;
        left: 45px;
        width: 1px;
        height: auto;
        right: auto;
    }
    
    .pt-28a35658-step {
        flex-direction: row;
        text-align: left;
        margin-bottom: 30px;
        align-items: flex-start;
    }
    
    .pt-28a35658-icon-wrapper {
        margin-bottom: 0;
        margin-right: 20px;
        flex-shrink: 0;
    }
}