.fc-wrapper-e5ccd989 {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

.fc-item-e5ccd989 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 5px;
}

/* Connecting Dotted Line */
.fc-item-e5ccd989::after {
    content: '';
    position: absolute;
    top: 20px; /* Aligned with center of the number */
    left: 50%;
    width: 100%;
    border-top: 2px dashed #b5b5b5;
    z-index: 1;
}

.fc-item-e5ccd989:last-child::after {
    display: none;
}

.fc-num-wrapper-e5ccd989 {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    background: #fff; /* to cover the line behind it */
    padding: 0 10px;
}

.fc-num-e5ccd989 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0c1a66;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
}

.fc-img-wrapper-e5ccd989 {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.fc-img-e5ccd989 {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.fc-title-e5ccd989 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #222;
}

.fc-desc-e5ccd989 {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

@media (max-width: 1024px) {
    .fc-wrapper-e5ccd989 {
        flex-wrap: wrap;
    }
    .fc-item-e5ccd989 {
        flex: 0 0 30%;
        margin-bottom: 30px;
    }
    .fc-item-e5ccd989::after {
        display: none; /* Hide line on tablet/mobile when wrapping */
    }
}

@media (max-width: 767px) {
    .fc-item-e5ccd989 {
        flex: 0 0 100%;
    }
}
