.video-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-item {
    margin: 20px 0;
}

video {
    max-width: 100%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 8px;
}

p {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
}

.gallery-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
    flex-wrap: wrap; /* Ensures responsiveness */
}

.gallery-section {
    margin: 20px auto;
    max-width: 1200px;
  }

.gallery-item {
    flex: 1 1 calc(33.33% - 20px);
    max-width: 1200px;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.gallery-caption {
    text-align: center;
    font-size: 1.2rem; /* Adjust font size */
    margin-top: 10px;
    color: #333; /* Optional: caption text color */
}

.gallery-wide {
    flex: 1 1 100%; /* Single wide image */
    max-width: 100%;
  }
  
  .gallery-wide img {
    width: 100%;
    height: auto;
  }
  /* PDF Section Styling */
  .pdf-section {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    box-sizing: border-box;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 32px 0;
  }
  
  .pdf-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* PDF Viewer Styling */
  .pdf-viewer {
    width: 100%;
    min-width: 300px;
    max-width: 100vw;
    min-height: 400px;
    height: 80vh;
    border: none;
    display: block;
    margin: 0 auto;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .pdf-viewer {
      min-width: 100%;
      height: 60vh;
      min-height: 300px;
    }
  }
