
.step-accordion {
    display: flex;
    flex-direction: column;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: opacity 0.5s, transform 0.5s;
    opacity: 0;
    transform: translateY(20px);
}

.step.active {
    opacity: 1;
    transform: translateY(0);
}

.text {
    flex: 1;
    padding: 10px;
}

.image {
    flex: 1;
    padding: 10px;
    text-align: center;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
