@charset "UTF-8";
/* CSS Document */
/* Tutorial Section */
.tutorial-section {
    text-align: center;
    background: #f5f5f5;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tutorial-section h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.tutorial-section p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.tutorial-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.tutorial-step {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.tutorial-step img {
    max-width: 800px; 
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px 10px 0 0;
}

.tutorial-step h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}