.how-it-works-4201 {
    padding: 80px 20px;
    font-family: var(--e-global-typography-primary-font-family), sans-serif;
    text-align: center;
}

.hiw-header {
    margin-bottom: 60px;
}

.hiw-subheading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hiw-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 600px;
    margin: 0 auto;
}

.hiw-steps-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.hiw-connecting-line {
    position: absolute;
    top: 50px; /* Align with center of icon box */
    left: 15%;
    right: 15%;
    height: 1px;
    border-top: 1px dashed #d1d5db;
    z-index: 1;
}

.hiw-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hiw-step {
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.hiw-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: #e5e7eb;
    opacity: 0.5;
    z-index: -1;
    line-height: 1;
}

.hiw-step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.hiw-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-step-icon i {
    font-size: 30px;
}

.hiw-step-icon svg {
    width: 30px;
    height: 30px;
}

.hiw-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #182335;
    margin-bottom: 15px;
}

.hiw-step-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .hiw-steps {
        flex-direction: column;
        gap: 60px;
    }
    .hiw-connecting-line {
        display: none;
    }
    .hiw-step-number {
        top: -10px;
    }
}