<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.step-by-step {
    padding: 2rem 0;
}

.step-by-step .steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-by-step .step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-by-step .step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent-1);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.step-by-step .step-content {
    flex-grow: 1;
}

.step-by-step .title {
    font-size: 1.5rem;
    color: var(--color-text);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.step-by-step .description {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .step-by-step {
        padding: 1.5rem 0;
    }

    .step-by-step .steps {
        gap: 1.5rem;
    }

    .step-by-step .step {
        gap: 1rem;
    }

    .step-by-step .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .step-by-step .title {
        font-size: 1.25rem;
    }
} </pre></body></html>