.qrise-steps-block {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 50px 0;
}

.qrise-step {
    flex: 1;
    text-align: center;
}

.qrise-step-image {
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    position: relative;
    margin-bottom: 20px;
}

.qrise-step-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.qrise-step-content h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .qrise-steps-block {
        flex-direction: column;
        align-items: center;
        padding: 0px 20px;
    }

    .qrise-step {
        max-width: 500px;
        width: 100%;
    }
} 