.title {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 0 10px;
  }
  
  .gallery-item {
    width: 100%;
    aspect-ratio: 1 / 1; /* Ensures square container */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
  }
  
  .gallery-item img:hover {
    transform: scale(1.05);
  }
  
  .pagination {
    text-align: center;
    margin-top: 20px;
  }
  
  .pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 14px;
    background: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
  }
  
  .pagination a.active {
    background: #0056b3;
  }
  