.tutorial-wrapper {
    min-height: 100vh;
    min-width: 100%;
    display: flex;
    flex-direction: column;
}

.tutorial-step {
    min-height: 100vh; /* هر آموزش یک صفحه کامل */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px;
    box-sizing: border-box;
}

.tutorial-step:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff, #ffebbe);
}

.tutorial-step:nth-child(even) {
    background: linear-gradient(135deg, #ffe9b4, #ffffff);
}

.tutorial-step.reverse {
    flex-direction: row-reverse;
}

.tutorial-text {
    flex: 1;
    max-width: 40vw;
}

.tutorial-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.titr {
    font-size: 2rem;
    color: var(--light-blue);
    font-weight: bold;
}

#btn-c {
    background: linear-gradient(135deg, #004b52, #30a284, #004b54);
    font-weight: bold;
    padding: 5px;
    margin: 5px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.49);
    color: white;
}

.tutorial-text p {
    white-space: pre-line;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #444;
}


.tutorial-image img {
    width: 40vw;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.tutorial-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .tutorial-step, .tutorial-step.reverse {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .tutorial-text {
        max-width: 100%;
    }
}

@media (max-width: 1020px) {
    .tutorial-step:nth-child(odd) {
        background: linear-gradient(25deg, #ffffff, #ffebbe);
    }

    .tutorial-step, .tutorial-step.reverse {
        flex-direction: column-reverse;
    }

    .tutorial-image img {
        width: 85vw;
        max-width: 550px;
    }
    #first-img img{
        width: 85vw;
        max-width: 550px;
        aspect-ratio: 1000/1316;
    }
}