/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    justify-content: center;
    margin-top: 22px;
  }
  .gallery img {
    width: 100%;
    max-width: 300px;
    border-radius: 28px;
    box-shadow: 0 14px 38px rgba(0, 91, 181, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  .gallery img:hover {
    transform: scale(1.09);
    box-shadow: 0 20px 52px rgba(0, 91, 181, 0.45);
  }