.video-testimonial-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

.video-header {
    text-align: center;
    margin-bottom: 30px;
}

.video-header h2 {
    color: #0056b3;
    font-size: 34px;
    margin-bottom: 10px;
}

.video-header p {
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: auto;
}

.video-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.video-content {
    padding: 25px;
    text-align: center;
}

.video-content h3 {
    color: #0056b3;
    margin-bottom: 15px;
    font-size: 24px;
}

.video-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.watch-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #0056b3, #0077e6);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.watch-btn:hover {
    background: linear-gradient(135deg, #003f88, #0056b3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .video-header h2 {
        font-size: 28px;
    }

    .video-content {
        padding: 20px;
    }

    .video-content h3 {
        font-size: 20px;
    }
}