/* Simple gallery */
.simple-gallery-container {
    position: relative;
    width: 600px;
    height: 400px;
    overflow: hidden;
    margin-bottom: 50px;
  }
  
  .simple-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
  }
  
  .simple-gallery-image.active {
    display: block;
  }
  
  .simple-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3em;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 1;
  }
  
  .simple-gallery-prev {
    left: 10px;
  }
  
  .simple-gallery-next {
    right: 10px;
  }
  
  .simple-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
  }
  
  .simple-gallery-modal-img {
    max-width: 90%;
    max-height: 90%;
  }
  
  .simple-gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2em;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
  }
  
  .simple-gallery-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5em;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  
  .simple-gallery-modal-prev {
    left: 30px;
  }
  
  .simple-gallery-modal-next {
    right: 30px;
  }