.hiw-container-0f97dfcb {
    width: 100%;
    padding: 60px 20px;
    background-color: transparent;
    text-align: center;
}

.hiw-section-title-0f97dfcb {
    font-size: 36px;
    font-weight: 700;
    color: #0b1a2e; /* Target Avenue Dark Navy */
    margin-bottom: 60px;
}

.hiw-grid-0f97dfcb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Horizontal connecting line for desktop */
@media (min-width: 992px) {
    .hiw-grid-0f97dfcb::before {
        content: '';
        position: absolute;
        top: 35px; /* aligns with step number */
        left: 10%;
        right: 10%;
        height: 2px;
        background-color: rgba(110, 193, 228, 0.2); /* Lighter Blue #6EC1E4 with opacity */
        z-index: 0;
    }
}

.hiw-item-0f97dfcb {
    flex: 1 1 200px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hiw-item-0f97dfcb:hover {
    transform: translateY(-5px); /* Minimal animation */
}

.hiw-step-number-0f97dfcb {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #6EC1E4; /* Lighter Blue */
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(110, 193, 228, 0.3); /* Match Lighter Blue shadow */
}

.hiw-step-title-0f97dfcb {
    font-size: 20px;
    font-weight: 700;
    color: #0b1a2e;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

@media (max-width: 991px) {
    .hiw-grid-0f97dfcb {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .hiw-item-0f97dfcb {
        max-width: 400px;
    }
}