.tutorial-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tutorial-description {
    font-size: 22px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.tutorial-link {
    display: inline-block;
    padding: 12px 24px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
}

.tutorial-link:hover {
    background: #eaff4b;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .tutorial-container {
        margin: 15px;
        padding: 15px;
    }
    
    .tutorial-description {
        font-size: 16px;
    }
}