h1 {
      text-align: center;
      margin-bottom: 20px;
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
    }
    .card {
      background-color: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.2s;
      cursor: pointer;
    }
    .card:hover {
      transform: scale(1.03);
    }
    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .card-title {
      padding: 10px;
      text-align: center;
      font-weight: bold;
    }
    .fullscreen-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0,0,0,0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      display: none;
    }
    .fullscreen-overlay img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 8px;
    }
    .fullscreen-overlay.show {
      display: flex;
    }
    .more-link {
      text-align: center;
      margin-top: 30px;
    }
    .more-link a {
      text-decoration: none;
      color: #007BFF;
      font-size: 18px;
    }