
  /* PDF Section Styling */
  .pdf-section {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    box-sizing: border-box;
    max-width: 1200px;
  }
  
  .pdf-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* PDF Viewer Styling */
  .pdf-viewer {
    width: 100%;
    height: 600px; /* Adjust height as needed */
    border: none; /* Removes the iframe border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow */
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .pdf-viewer {
      height: 400px; /* Reduces height for smaller screens */
    }
  }

  
.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;
  }