.process-section {
    padding: 8vw;
    background-color: #610404;
    margin-top: 10vh;
    padding-top: 9vh;
    padding-bottom: 9vh;
}

.process-section .heading_H8 {
    color: #FFFDFB;
    font-size: 3.5vw;
    line-height: 1vw;
    margin-bottom: 9vh;
}

.heading_H5 {
    font-size: 3.6vw;
    line-height: 3.6vw;
    color: #431107;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1vw;
}

.step-item {
    background-color: #FFFDFB;
    padding: 1vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.step-item--large {
    grid-column: span 4;
}

.step-number {
    margin-bottom: 1vw;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4vw;
}

.step-description {
    text-align: center;
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1vw;
}

.step-description.body_large {
    text-align: center !important;
    color: #431107;
    font-size: 1.7vw;
    line-height: 1.9vw;
}

@media (max-width: 500px) {
    .process-section {
        padding: 4vw;
    }

    .process-section .heading_H8 {
        font-size: 11vw;
        line-height: 11vw;
        max-width: 50%;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw;
    }

    .step-item {
        justify-content: flex-start;
        padding: 4vw 2vw;
    }

    .step-item--large {
        grid-column: span 2;
        width: calc(100%);
        aspect-ratio: unset;
        margin: 0 auto;
    }

    .heading_H5 {
        font-size: 6vw;
        line-height: 6vw;
    }

    .step-description.body_large {
        font-size: 4vw;
        line-height: 3vw;
        text-align: center;
    }
}