/* Steps Widget Styles */
.steps-container-fbb5c3eb {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    text-align: center;
    width: 100%;
}

/* Connecting Line */
.steps-container-fbb5c3eb::before {
    content: '';
    position: absolute;
    top: 40px; /* Default based on 80px wrapper */
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: #d8d8d8;
    z-index: 0;
}

.step-item-fbb5c3eb {
    flex: 1;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.step-icon-wrapper-fbb5c3eb {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px solid #ffffff; /* Gives space if line goes behind */
}

.step-icon-wrapper-fbb5c3eb i,
.step-icon-wrapper-fbb5c3eb svg {
    font-size: 30px;
    width: 30px;
    height: 30px;
    color: #1a9c68; /* Default fallback */
    fill: #1a9c68;
}

.step-title-fbb5c3eb {
    margin: 0 0 10px;
    font-size: 1.1em;
    font-weight: 600;
}

.step-desc-fbb5c3eb {
    font-size: 0.9em;
    opacity: 0.8;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .steps-container-fbb5c3eb {
        flex-direction: column;
        gap: 30px;
    }
    .steps-container-fbb5c3eb::before {
        top: 0;
        bottom: 0;
        left: 40px; /* Default based on 80px wrapper */
        right: auto;
        width: 1px;
        height: 100%;
    }
    .step-item-fbb5c3eb {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 0;
        width: 100%;
    }
    .step-icon-wrapper-fbb5c3eb {
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }
}
