.pf-18c5d4d9-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    width: 100%;
}

.pf-18c5d4d9-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Connecting Line */
.pf-18c5d4d9-container::before {
    content: '';
    position: absolute;
    top: 35px; /* Halfway through the bubble height */
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #ddd;
    z-index: 0;
}

.pf-18c5d4d9-bubble {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #3b82f6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 3px solid #fff;
}

.pf-18c5d4d9-step:hover .pf-18c5d4d9-bubble {
    transform: scale(1.1);
}

.pf-18c5d4d9-title {
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0 10px 0;
}

.pf-18c5d4d9-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    max-width: 200px;
}

@media (max-width: 767px) {
    .pf-18c5d4d9-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .pf-18c5d4d9-container::before {
        top: 10%;
        bottom: 10%;
        left: 50%;
        right: auto;
        width: 2px;
        height: 80%;
    }
}
