.pt-700e3f94-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.pt-700e3f94-step {
    display: flex;
    flex-direction: column;
    flex: 1; /* Automatically distribute available space equally */
    min-width: 180px; /* Prevent shrinking too small */
    position: relative;
    text-align: center;
}

@media (max-width: 991px) {
    .pt-700e3f94-container {
        flex-wrap: wrap;
    }
    .pt-700e3f94-step {
        flex: 1 1 50%;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .pt-700e3f94-container {
        flex-direction: column;
        align-items: center;
    }
    .pt-700e3f94-step {
        flex: auto;
        margin-bottom: 20px;
        width: 100%;
        max-width: 300px;
    }
    .pt-700e3f94-step::after {
        display: none !important;
    }
}

.pt-700e3f94-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.pt-700e3f94-icon-container {
    display: flex;
    justify-content: center;
    z-index: 2; /* Keep above line */
}

/* Dynamic connecting line */
.pt-700e3f94-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px; /* Align with middle of 60px icon */
    left: 50%; /* Start from center of current step */
    width: 100%; /* Stretch exactly to center of next step */
    height: 1px;
    background-color: var(--pt-700e3f94-line-color, #2a3a4a);
    z-index: 1;
}

.pt-700e3f94-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #2a3a4a; 
    background-color: #0b1118; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(42, 58, 74, 0.5); 
    position: relative;
    margin: 0 auto;
}

.pt-700e3f94-icon {
    font-size: 20px;
    color: #4db8ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pt-700e3f94-icon svg {
    width: 20px;
    height: 20px;
    fill: #4db8ff;
}

.pt-700e3f94-content {
    padding: 0 10px;
}

.pt-700e3f94-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 0;
}

.pt-700e3f94-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #8899aa;
    margin: 0 auto;
    max-width: 280px; /* Keep text block compact */
}