.steps {
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px;
}

.steps-title {
    font-size: 28px;
    font-weight: bold;
    color: #F5F5F7;
    text-align: left;
    margin-bottom: 20px;
    padding-left: 34px;
}

.steps-container {
    padding: 32px 40px;
    background-color: #1D1D1F;
    border-radius: 18px;
    color: #F5F5F7;
    line-height: 1.6;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8E85FA 0%, #6155F5 100%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-body {
    flex: 1;
}

.step-title {
    font-size: 19px;
    font-weight: 600;
    color: #F5F5F7;
    margin: 0 0 4px;
}

.step-text {
    font-size: 16px;
    color: #A1A1A6;
    margin: 0;
}

.step-text code {
    font-family: "SF Mono", Consolas, "Courier New", monospace;
    font-size: 14px;
    color: #E8E8ED;
    background-color: #2C2C2E;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.steps-divider {
    width: 100%;
    height: 1px;
    background-color: #333336;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .steps-title {
        font-size: 24px;
    }

    .steps-container {
        padding: 24px;
    }

    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}
