body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0c2c66;
    color: white;
}

.order-section {
    text-align: center;
    padding: 20px;
}

.order-section h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    color: #d7e2fa;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    width: 230px;
    text-align: center;
}

.step-icon {
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 15px;
    position: relative;
    margin-bottom: 15px;
}


.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #ff8a00;
    color: white;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
}

.step h3 {
    margin: 10px 0 6px;
    font-size: 20px;
    font-weight: bold;
}

.step p {
    font-size: 15px;
    color: #d0d8ee;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 400px) {
    .step {
        width: 100%;
    }
}