/* Order Process Section Styles */
#order {
    padding: 75px 0;
    background: #fff;
}

#order .section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1245px;
    margin: 0 auto;
    padding: 0 20px;
}

.order-step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background-color: #f5f5f5;
    color: #fe785a;
    font-size: 24px;
    font-weight: bold;
}

.order-step h3 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

.order-step p {
    color: #666;
    line-height: 1.5;
}

.order-cta {
    margin-top: 64px;
    background: #f5f5f5;
    padding: 32px;
    border-radius: 12px;
    max-width: 1245px;
    margin-left: auto;
    margin-right: auto;
}

.order-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.order-cta-text {
    flex: 2;
    margin-right: 24px;
}

.order-cta-text h3 {
    margin-bottom: 16px;
}

.order-cta .button {
    margin: 0;
}

@media (max-width: 1024px) {
    .order-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .order-steps {
        grid-template-columns: 1fr;
    }

    .order-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .order-cta-text {
        margin-right: 0;
        margin-bottom: 24px;
    }
}