.content-block {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.instruction-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.media-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    margin: 2rem 0;
 }
 
 .tutorial-image {
    width: 450px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
 }
 
 .video-container {
    width: 450px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    overflow: hidden;
 }
 
 @media (max-width: 950px) {
    .media-container {
        flex-direction: column;
    }
 }