/* Process Steps Layout Wrapper */
.proc-steps-container-63b912c7 {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.proc-steps-63b912c7 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    width: 100%;
    gap: 30px;
}

/* Desktop Connecting Line through the background */
.proc-steps-63b912c7::before {
    content: '';
    position: absolute;
    top: 20px; /* Align with the center of the 40px circle */
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #E6E8EC;
    z-index: 1;
}

/* Individual Step */
.proc-step-63b912c7 {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Circle with Number */
.proc-header-63b912c7 {
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
    display: inline-block;
}

.proc-num-63b912c7 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #B8872F;
    color: #B8872F;
    font-size: 14px;
    font-weight: 600;
    background-color: #ffffff; /* Cover the connecting line behind it */
}

/* Title Styling */
.proc-title-63b912c7 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 16px 0;
    color: #0A1D3A;
    line-height: 1.3;
}

/* Description Text */
.proc-desc-63b912c7 {
    font-size: 15px;
    line-height: 1.6;
    color: #657185;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 768px) {
    .proc-steps-63b912c7 {
        flex-direction: column;
        gap: 40px;
    }
    
    /* Hide the horizontal desktop connector line */
    .proc-steps-63b912c7::before {
        display: none;
    }
    
    /* Completely hide any vertical connector lines on mobile to avoid crossing text */
    .proc-step-63b912c7::before,
    .proc-step-63b912c7:not(:last-child)::before {
        display: none !important;
    }
    
    .proc-step-63b912c7 {
        width: 100%;
        align-items: flex-start;
    }
}
