.gallery-body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    color: #03053f;
    margin: 0;
    padding: 0;
  }

  .gallery-section {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: auto;
  }

  .gallery-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 650;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 2fr));
    gap: 1rem;
    margin: 1.5rem;
    align-items: center;
  }

  .gallery-grid img {
    width: 100%;
    height: 160px;
    border-radius: 0.5rem;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .gallery-grid img:hover {
    transform: scale(1.05);
  }

  /* Lightbox styling */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  }

  .lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    font-weight: bold;
  }
