.reviews-section {
    padding: 100px 8%;
    text-align: center;
}

.reviews-section h1 {
    font-size: 38px;
    margin-bottom: 60px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    padding-bottom: 15px;
}

.video-card video {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.video-card p {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
    font-style: italic;
}
