.steps_section {
    & .section_inner {
        width: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 1;

        & .steps_cards {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 0 0 3rem;

            @media (max-width: 991px) {
                gap: 1.5rem;
                flex-direction: column;
            }

            & .step_card {
                flex: 1;
                min-width: 0;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                padding: 3rem;
                background-color: #FFDBBC;
                border: 1px solid var(--primary);
                border-radius: 1rem;

                @media (max-width: 991px) {
                    flex: 0 0 100%;
                    padding: 2.5rem 1.5rem;
                }

                & .step_number_wrapper {
                    width: 100%;
                    margin-bottom: 2rem;

                    @media (max-width: 991px) {
                        margin-bottom: 1.5rem;
                    }
                }

                & .step_number {
                    flex-shrink: 0;
                    width: 5rem;
                    height: 5rem;
                    background-color: var(--primary);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 2rem;
                    font-weight: 700;
                    color: var(--white);
                    line-height: 1;

                    @media (max-width: 991px) {
                        width: 50px;
                        height: 50px;
                        font-size: 1.6rem;
                    }
                }

                & p.step_text {
                    width: 100%;
                    margin: 0;
                    text-align: left;
                }
            }
        }

        & .after_cards_text {
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--text);
            line-height: 1.6;
            text-align: left;
            margin: 2rem 0 0;

            @media (max-width: 991px) {
                font-size: 1.6rem;
            }
        }
    }
}
