.how-it-works-section {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(19,64,222,0.95) 0%, rgba(40,163,84,0.92) 100%);
}

.step-card {
    position: relative;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    border: 1px solid rgba(19,64,222,0.08);
    box-shadow: 0 12px 30px rgba(19,64,222,0.08);
    transition: all .3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19,64,222,0.15);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(19,64,222,0.08);
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #1340dec7 0%,
        #28a354 100%
    );
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 15px 30px rgba(19,64,222,0.18);
}

.step-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 767px) {

    .how-it-works-section {
        padding: 60px 0;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-number {
        font-size: 32px;
    }

    .step-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }
}