/* Tutorials Styles */
.tutorial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.tutorial-content h1 {
    color: #1d3557;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-align: center;
}

.tutorial-content h2 {
    color: #1d3557;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.tutorial-content h3 {
    color: #2c3e50;
    margin: 1.5rem 0 0.8rem;
    font-size: 1.4rem;
}

.tutorial-content p {
    margin: 1rem 0;
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.7;
}

.tutorial-content a {
    color: #3182ce;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tutorial-content a:hover {
    color: #2c5282;
    text-decoration: underline;
}

.tutorial-content code {
    background: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #2d3748;
}

.tutorial-content pre {
    background: #2d3748;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.tutorial-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tutorial-content blockquote {
    border-left: 4px solid #e2e8f0;
    margin: 1.5rem 0;
    padding: 0.5rem 0 0.5rem 1rem;
    color: #4a5568;
    font-style: italic;
}

.tutorial-content ul,
.tutorial-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.tutorial-content li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tutorial-content {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .tutorial-content h1 {
        font-size: 2rem;
    }
    
    .tutorial-content h2 {
        font-size: 1.6rem;
    }
    
    .tutorial-content h3 {
        font-size: 1.3rem;
    }
}
