.video-head {
            margin-bottom: 2rem;
            color: #000000;
        }
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.video-item {
    text-align: center;
}
.video-item iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
}
.video-item p {
    margin-top: 0.5rem;
    color: #555;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}