.lp-09fa87cd-wrapper {
    font-family: inherit;
    background-color: #f7fafd;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5eef5;
    position: relative;
    overflow: hidden;
}

/* Optional background decoration dots */
.lp-09fa87cd-wrapper::before,
.lp-09fa87cd-wrapper::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#d5e2ed 20%, transparent 20%);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}
.lp-09fa87cd-wrapper::before {
    top: -20px;
    right: -20px;
}
.lp-09fa87cd-wrapper::after {
    bottom: -20px;
    left: -20px;
}

.lp-09fa87cd-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.lp-09fa87cd-title {
    font-size: 28px;
    color: #1a2b49;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.lp-09fa87cd-divider {
    width: 60px;
    height: 4px;
    background-color: #3b82f6;
    border-radius: 2px;
}

.lp-09fa87cd-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.lp-09fa87cd-item {
    flex: 1 1 250px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.lp-09fa87cd-number-wrap {
    position: absolute;
    top: -20px;
    left: 20px;
    display: flex;
    align-items: center;
    width: calc(100% + 30px);
    z-index: 2;
}

.lp-09fa87cd-number {
    width: 44px;
    height: 44px;
    background-color: #4ab3b3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.lp-09fa87cd-connector {
    flex-grow: 1;
    height: 0;
    border-top: 2px dashed #4ab3b3;
    margin-left: 10px;
    opacity: 0.6;
}

/* Hide connector on last item of row (approximate based on grid layout) */
@media (min-width: 900px) {
    .lp-09fa87cd-item:nth-child(3n) .lp-09fa87cd-connector {
        display: none;
    }
}
@media (max-width: 899px) and (min-width: 600px) {
    .lp-09fa87cd-item:nth-child(2n) .lp-09fa87cd-connector {
        display: none;
    }
}
@media (max-width: 599px) {
    .lp-09fa87cd-connector {
        display: none;
    }
    .lp-09fa87cd-number-wrap {
        width: auto;
    }
}

.lp-09fa87cd-card {
    background-color: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 40px 20px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px; /* space for the top number */
}

.lp-09fa87cd-icon {
    font-size: 60px;
    color: #1a2b49;
    margin-bottom: 20px;
}
.lp-09fa87cd-icon svg {
    width: 60px;
    height: 60px;
    fill: #1a2b49;
}

.lp-09fa87cd-desc {
    margin: 0;
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
}