  h6 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
  }

  .gallery-grid {
    column-count: 4;
    column-gap: 1rem;
  }

  .gallery-grid img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
    break-inside: avoid;
  }

  .gallery-grid img:hover {
    transform: scale(1.02);
  }

  /* Modal full screen */
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
  }

  .modal img {
    max-width: 95%;
    max-height: 80vh;
    border-radius: 10px;
    object-fit: contain;
  }

  .modal button {
    margin-top: 1rem;
    padding: 12px 24px;
    border: none;
    background-color: #FCAE35;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    position: fixed;
    bottom: 30px;
  }

  @media (max-width: 1024px) {
    .gallery-grid {
      column-count: 3;
    }
  }

  @media (max-width: 768px) {
    .gallery-grid {
      column-count: 2;
    }
  }

  @media (max-width: 480px) {
    .gallery-grid {
      column-count: 1;
    }

    .modal button {
      width: 90%;
      left: 5%;
    }
  }