.youtube-section {
    margin-top: 40px;
    text-align: center;
}

.youtube-section h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 15px;
}

.youtube-card {
    width: 400px;
    height: 250px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    background: #000;
}

.youtube-card:hover {
    transform: scale(1.05);
}

.youtube-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

@media (max-width: 500px) {
    .youtube-card {
        width: 90%;
        height: 220px;
    }
}
