.hp-container-4dac73f7 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: #F5F5F5;
    padding: 60px 40px;
    box-sizing: border-box;
}

.hp-steps-4dac73f7 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

/* Individual connector lines logic: every step except the last draws a line to the right step */
.hp-step-4dac73f7 {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* Horizontal connectors */
.hp-step-4dac73f7::after {
    content: "";
    position: absolute;
    top: 25px; /* Vertically centered relative to the circle (50px / 2) */
    left: calc(50% + 25px); /* Starts from the right boundary of the current circle */
    width: calc(100% - 50px + 20px); /* Extends rightward to reach the next step circle (taking gap: 20px into account) */
    height: 2px;
    background-color: #D1D5DB;
    z-index: 1;
}

/* The last step NEVER has a connector line following it */
.hp-step-4dac73f7:last-child::after {
    display: none !important;
}

.hp-circle-container-4dac73f7 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    margin-bottom: 20px;
    width: 100%;
}

.hp-circle-4dac73f7 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2563EB;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    position: relative;
    z-index: 5;
    box-sizing: border-box;
    transition: transform 0.2s ease;
}

.hp-circle-4dac73f7 i {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hp-circle-4dac73f7 svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: inline-block;
}

.hp-title-4dac73f7 {
    margin: 0 0 10px 0;
    padding: 0;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.hp-desc-4dac73f7 {
    margin: 0;
    padding: 0;
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Mobile responsive layout adjustment */
@media screen and (max-width: 767px) {
    .hp-steps-4dac73f7 {
        flex-direction: column;
        gap: 40px; /* Reduced gap since there are no vertical connector lines */
    }

    .hp-step-4dac73f7 {
        width: 100% !important;
        position: relative !important;
    }

    /* Completely hide connector line in mobile view. High specificity used to override any cache or elementor values. */
    .hp-container-4dac73f7 .hp-steps-4dac73f7 .hp-step-4dac73f7::after {
        display: none !important;
        content: none !important;
        background-color: transparent !important;
        width: 0 !important;
        height: 0 !important;
    }
}
