.step-page {
    display: flex;
    padding: 160px 64px;
    flex-direction: column;
    align-items: center;
}

.step-page-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap;
    justify-content: space-between;
}

.step-page-row {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

.step-page-text {
    grid-column: span 1;
}

.step-page-title {
    flex-wrap: wrap;
}

.step-page-title-italic {
    color: #1C1C1C;
    font-family: "PT Serif", serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 400;
    line-height: 110%;
}

.step-page-title-normal {
    color: #1C1C1C;
    font-family: Manrope, serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

.step-page-subtitle {
    color: #4D4E55;
    font-family: Manrope, serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    flex-wrap: wrap;
}

.step-card {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1 0 0;
    border-radius: 24px;
    background: #F8F8FA;
    height: 200px;
}

.step-number {
    display: flex;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 200px;
    background: #E5E4FF;
    color: #6F68FB;
    font-family: Manrope, serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.step-card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.step-card-title {
    color: #1C1C1C;
    font-family: Manrope, serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    flex: 1 0 0;
}

.step-card-subtitle {
    color: #4D4E55;
    font-family: Manrope, serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

@media (max-width: 768px) {
    .step-page {
        display: none;
    }

    .step-card-mobile {
        display: flex;
        width: 335px;
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        flex-shrink: 0;
        border-radius: 16px;
        background:  #F8F8FA;
    }

    .step-mobile {
        color:  #6F68FB;
        font-family: Manrope, serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 140%;display: flex;
        padding: 8px 24px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        border-radius: 200px;
        background: #E5E4FF;
    }

    .steps-mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 24px;
        align-self: stretch;
    }

    .step-title-mobile {
        color: #1C1C1C;
        font-family: Manrope, serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 140%;
        flex: 1 0 0;
    }

    .step-subtitle-mobile {
        color: #4D4E55;
        font-family: Manrope, serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

    .step-text-mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        align-self: stretch;
    }
}