.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns for desktop */
  grid-gap: 10px; /* Smaller gap between videos */
}

.video-wrapper {
  max-width: 100%; /* Ensure the video wrapper takes full width of the grid cell */
}

.video-wrapper iframe {
  width: 100%;  /* Full width */
  height: 250px; /* Adjusted height */
  border-radius: 15px; /* Rounded corners */
  overflow: hidden; /* Ensure rounded edges are visible */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr; /* 1 column for mobile */
    grid-gap: 15px; /* Adjust the gap for mobile view */
  }
}

/* make menu in one line*/
.faq-filter-nav a {
    padding: 10px 15px; /* Adjust padding for better fit */
    font-size: 14px; /* Adjust font size if needed */
    text-align: center;
    display: inline-block;
}
#faq-section {
    padding-bottom: 140px;
  }