.workflow-0ea0c87e-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-0ea0c87e-timeline-wrapper {
    position: relative;
    padding: 40px 0;
    margin-bottom: 40px;
}

/* Timeline Desktop Line */
.workflow-0ea0c87e-line-bg {
    position: absolute;
    top: 75px;
    left: 4%;
    right: 4%;
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    z-index: 1;
}

.workflow-0ea0c87e-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #01509D;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Nodes Layout */
.workflow-0ea0c87e-nodes {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.workflow-0ea0c87e-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 10%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.workflow-0ea0c87e-node:hover {
    transform: translateY(-4px);
}

/* Icons styling */
.workflow-0ea0c87e-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f3f4f6;
    border: 3px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.workflow-0ea0c87e-icon svg {
    width: 20px;
    height: 20px;
    fill: #4b5563;
    transition: fill 0.3s ease;
}

.workflow-0ea0c87e-node.active .workflow-0ea0c87e-icon {
    background-color: #01509D;
    border-color: #01509D;
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(1, 80, 157, 0.3);
}

.workflow-0ea0c87e-node.active .workflow-0ea0c87e-icon svg {
    fill: #ffffff;
}

/* Titles */
.workflow-0ea0c87e-title {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.workflow-0ea0c87e-node.active .workflow-0ea0c87e-title {
    color: #01509D;
    font-weight: 700;
}

/* Popover Cards styling */
.workflow-0ea0c87e-info-card {
    position: absolute;
    top: 105px;
    width: 220px;
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #01509D;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.workflow-0ea0c87e-node:hover .workflow-0ea0c87e-info-card,
.workflow-0ea0c87e-node.active .workflow-0ea0c87e-info-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.workflow-0ea0c87e-info-card h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.workflow-0ea0c87e-info-card p {
    margin: 0;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.4;
}

/* Footer / CTA Styling */
.workflow-0ea0c87e-footer {
    display: flex;
    justify-content: center;
    margin-top: 220px; /* Space for absolute cards on desktop */
}

.workflow-0ea0c87e-cta {
    display: inline-block;
    background-color: #01509D;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(1, 80, 157, 0.2);
}

.workflow-0ea0c87e-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(1, 80, 157, 0.3);
}

/* Responsive / Mobile Styling (Vertical Stepper) */
@media (max-width: 991px) {
    .workflow-0ea0c87e-line-bg {
        display: none;
    }

    .workflow-0ea0c87e-nodes {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .workflow-0ea0c87e-node {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        gap: 16px;
    }

    .workflow-0ea0c87e-node:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 56px;
        left: 27px;
        width: 2px;
        height: calc(100% - 26px);
        background-color: #e5e7eb;
        z-index: 1;
    }

    /* Vertical Active state connector line highlight */
    .workflow-0ea0c87e-node.active:not(:last-child)::after {
        background-color: #01509D;
    }

    .workflow-0ea0c87e-icon {
        flex-shrink: 0;
        z-index: 2;
    }

    .workflow-0ea0c87e-title {
        margin-top: 16px;
        font-size: 15px;
    }

    /* Static display for cards on mobile instead of absolute popovers */
    .workflow-0ea0c87e-info-card {
        position: relative;
        top: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid #e5e7eb;
        background: transparent;
        padding: 4px 12px;
        margin-top: 8px;
    }

    .workflow-0ea0c87e-node.active .workflow-0ea0c87e-info-card {
        border-left-color: #01509D;
    }

    .workflow-0ea0c87e-info-card h4 {
        display: none; /* Already shown as .workflow-0ea0c87e-title */
    }

    .workflow-0ea0c87e-footer {
        margin-top: 40px;
    }
}
