.flaticon:before {
    color: #A1845A;
    font-size: 29px;
}

.how-it-works {
    /* padding: 80px 150px; */
    position: relative;
    overflow: hidden;
    padding:0 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
}

.section-header h2 span {
    font-size: 90px;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 20px;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ffffff;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 250px;
}

.line-up {
    width: 1px;
    height: 40px;
    background-color: #ffffff;
    margin-top: 0;
}

.line-top {
    width: 1px;
    height: 30px;
    background-color: #ffffff;
    margin-top: 0;
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: #121212;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 17px;
    z-index: 2;
}

.card {
    background: linear-gradient(135deg, #b9935a, #a68a64);
    border-radius: 12px;
    width: 100%;
    min-height: 170px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 24px;

}

.icon {
    width: 70px;
    height: 70px;
    background-color: #121212;
    border-radius: 50%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 27px 99px 20px #373636;
}

.icon img {
    width: 40px;
    height: 40px;
}

.card h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

/* responsive */
@media (max-width: 780px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
        width: 80%;
    }

    .how-it-works {
        position: relative;
        overflow: hidden;
        padding: 0 0px;
    }

    .steps {
        gap: 0px;
    }
    .section-header{
        text-align:center;
    }
    .section-header h2 {
        font-size: 36px;
        font-weight: 300;
        line-height: 1.2;
    }
    
    .section-header h2 span {
        font-size: 40px;
    }

}