.hiw-30f0acc9-wrapper {
    background-color: #ffffff;
    padding: 60px 20px;
    font-family: inherit;
    text-align: center;
}
.hiw-30f0acc9-main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}
.hiw-30f0acc9-steps-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    position: relative;
    gap: 30px;
}
.hiw-30f0acc9-step {
    flex: 1;
    position: relative;
    text-align: center;
}
/* Connecting line */
.hiw-30f0acc9-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px; /* half of 100px icon */
    left: calc(50% + 60px);
    width: calc(100% - 120px);
    height: 2px;
    background-color: #eaeaea;
    z-index: 1;
}
.hiw-30f0acc9-icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px auto;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.hiw-30f0acc9-icon {
    font-size: 40px;
}
.hiw-30f0acc9-icon svg {
    width: 40px;
    height: 40px;
}
.hiw-30f0acc9-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hiw-30f0acc9-step-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
}
.hiw-30f0acc9-step-desc {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}
.hiw-30f0acc9-cta-wrap {
    margin-top: 40px;
}
.hiw-30f0acc9-cta {
    display: inline-block;
    padding: 16px 40px;
    color: #ffffff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.hiw-30f0acc9-cta:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

@media (max-width: 768px) {
    .hiw-30f0acc9-steps-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .hiw-30f0acc9-step:not(:last-child)::after {
        display: none;
    }
    .hiw-30f0acc9-step {
        width: 100%;
        max-width: 400px;
    }
}