﻿.tutorial-content {
    font-size: 1rem;
    line-height: 1.6;
}

.tutorial-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e9f2;
    margin-bottom: 2rem;
}

    .tutorial-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #6576ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content {
    flex-grow: 1;
}

.tutorial-image {
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 800px;
}

    .tutorial-image img {
        border-radius: 4px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        max-width: 100%;
        height: auto;
    }

.tutorial-tip {
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        margin-bottom: 0.5rem;
    }
}
