.roadmap-container-110ad927 {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.roadmap-line-bg-110ad927,
.roadmap-line-fill-110ad927 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    margin-left: -3px;
    border-radius: 3px;
}

.roadmap-line-bg-110ad927 {
    background-color: #e0e0e0;
    z-index: 1;
}

.roadmap-line-fill-110ad927 {
    background: linear-gradient(to bottom, #0073aa, #00c6ff);
    z-index: 2;
    height: 0%;
    transform-origin: top;
    transition: height 0.1s ease-out;
}

.roadmap-steps-110ad927 {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.roadmap-step-110ad927 {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.roadmap-step-110ad927.active-step {
    opacity: 1;
}

.roadmap-step-left {
    justify-content: flex-start;
}
.roadmap-step-right {
    justify-content: flex-end;
}

.roadmap-step-content-110ad927 {
    width: 48%;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Image alignment logic using Flexbox direction */
.roadmap-step-content-110ad927.image-left {
    flex-direction: row;
}

.roadmap-step-content-110ad927.image-right {
    flex-direction: row; /* Overridden by PHP DOM order, keep row to let elements flow naturally */
}

.roadmap-text-content-110ad927 {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevents text from pushing image out */
}

/* Align text internally depending on layout */
.roadmap-step-left .roadmap-text-content-110ad927 {
    text-align: right;
}

.roadmap-step-right .roadmap-text-content-110ad927 {
    text-align: left;
}

.roadmap-image-110ad927 {
    /* Flex and width managed by control settings, fallback here */
    flex: 0 0 120px;
    max-width: 120px;
    display: block;
}

.roadmap-image-110ad927 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.roadmap-step-dot-110ad927 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #0073aa;
    z-index: 4;
    transition: all 0.3s ease;
}

.roadmap-date-110ad927 {
    font-size: 14px;
    font-weight: 700;
    color: #0073aa;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap-title-110ad927 {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 600;
}

.roadmap-subtitle-110ad927 {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 12px;
}

.roadmap-desc-110ad927 {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .roadmap-line-bg-110ad927,
    .roadmap-line-fill-110ad927 {
        left: 30px;
    }
    
    .roadmap-step-dot-110ad927 {
        left: 30px;
    }
    
    .roadmap-step-110ad927 {
        justify-content: flex-end;
    }
    
    .roadmap-step-content-110ad927 {
        width: calc(100% - 70px);
        flex-direction: column !important;
        align-items: center;
        text-align: center !important;
    }
    
    .roadmap-step-left .roadmap-text-content-110ad927,
    .roadmap-step-right .roadmap-text-content-110ad927 {
        text-align: center;
    }

    .roadmap-image-110ad927 {
        flex: 0 0 auto !important;
        max-width: 100% !important;
        margin-bottom: 15px;
    }
}