/* section_no3_new.css */
.workflow-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background-color: #007bff;
    transform: translateY(-50%);
    z-index: 1;
}

.workflow-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.workflow-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: 4px solid #007bff;
    color: #007bff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.workflow-step-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.workflow-step-content {
    font-size: 0.9em;
    color: #666;
    padding: 0 15px;
}
