.vfb-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.vfb-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: inherit;
    justify-content: center;
    width: 100%;
}

.vfb-bubble {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border-style: solid;
    border-width: 0px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.vfb-bubble:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.vfb-heading {
    margin-top: 0;
    font-weight: 700;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vfb-heading-text {
    flex-grow: 1;
}

.vfb-tick-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: vfb-tick-bounce 2s infinite ease-in-out;
}

.vfb-tick-icon svg {
    width: 20px;
    height: 20px;
    stroke: #4CAF50;
    transition: stroke 0.3s ease;
}

@keyframes vfb-tick-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.vfb-desc {
    margin-bottom: 0;
    line-height: 1.6;
}

.vfb-desc p:last-child {
    margin-bottom: 0;
}

/* Connector lines styling */
.vfb-connector-line {
    display: block;
    position: relative;
    left: 50%;
    background-color: #e1e1e1;
    z-index: 1;
}
