/* How to order section*/

/* Colors 
#F5E6E8 - pudrowy róż
#D9EAD3 - miętowy

*/
.how-to-order {
    text-align: center;
    padding: 40px 20px;
}

.how-to-order h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.how-to-order p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.how-to-order .steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.how-to-order .step {
    max-width: 220px;
    text-align: center;
}

.how-to-order .icon-container {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background-color: #F2DEB8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-to-order .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #DEC18C;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    display: inline-block;
}

.how-to-order .icon {
    font-size: 1.5rem;
    color: #fff;
}

.how-to-order h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.how-to-order .step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}