.tutorial-content {
    max-width: 800px;
    margin: 0 auto;
}

.tutorial-header {
    text-align: center;
    margin-bottom: 40px;
}

.tutorial-header h1 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.tutorial-header .tool-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 15px;
}

.tutorial-header .tool-link:hover {
    text-decoration: underline;
}

.tutorial-article {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.tutorial-article h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.tutorial-article h2:first-child {
    margin-top: 0;
}

.tutorial-article h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.tutorial-article p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 15px;
}

.tutorial-article ul,
.tutorial-article ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.tutorial-article li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 10px;
}

.tutorial-article strong {
    color: var(--text-color);
}

.tip-box {
    background-color: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin: 25px 0;
}

.tip-box p {
    margin-bottom: 0;
}

.tip-box strong {
    color: var(--primary-color);
}

.cta-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.cta-section p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .tutorial-article {
        padding: 25px;
    }

    .tutorial-header h1 {
        font-size: 1.8rem;
    }

    .tutorial-article h2 {
        font-size: 1.3rem;
    }

    .tutorial-article p,
    .tutorial-article li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tutorial-article {
        padding: 20px;
    }

    .tutorial-header h1 {
        font-size: 1.5rem;
    }
}
