 .container_content {
     margin: 50px auto;
     max-width: 1000px;
     margin-top: 5px;
     position: relative;
 }

 .gallery {
     position: relative;
     width: 100%;
     height: 400px;
     overflow: hidden;
     margin: 30px 0;
 }

 .gallery-container {
     position: relative;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .gallery-controls {
     position: absolute;
     top: 50%;
     left: 0;
     right: 0;
     transform: translateY(-50%);
     display: flex;
     justify-content: space-between;
     padding: 0 20px;
     z-index: 10;
 }

 .gallery-controls-previous,
 .gallery-controls-next {
     background-color: rgba(0, 0, 0, 0.7);
     color: white;
     border: none;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
 }

 .gallery-controls-next:hover,
 .gallery-controls-previous:hover {
     background-color: rgba(0, 0, 0, 0.9);
     transform: scale(1.1);
 }

 .gallery-item-park {
     height: 250px;
     width: 350px;
     opacity: 0.6;
     position: absolute;
     transition: all 0.4s ease-in-out;
     z-index: 1;
     filter: grayscale(30%);
     object-fit: cover;
     border-radius: 12px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .gallery-item-park.gallery-item-park-selected {
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     height: 350px;
     width: 550px;
     opacity: 1;
     left: 50%;
     transform: translateX(-50%);
     z-index: 3;
     filter: grayscale(0%);
 }

 .gallery-item-park.gallery-item-park-previous {
     left: 25%;
     transform: translateX(-50%) scale(0.8);
     opacity: 0.8;
     z-index: 2;
     filter: grayscale(20%);
 }

 .gallery-item-park.gallery-item-park-next {
     left: 75%;
     transform: translateX(-50%) scale(0.8);
     opacity: 0.8;
     z-index: 2;
     filter: grayscale(20%);
 }

 .gallery-indicators {
     position: absolute;
     bottom: 20px;
     left: 0;
     right: 0;
     display: flex;
     justify-content: center;
     gap: 10px;
     z-index: 5;
 }

 .gallery-indicator {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.5);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .gallery-indicator.active {
     background-color: #fff;
     transform: scale(1.2);
 }


 /* Responsive adjustments */
 @media (max-width: 992px) {
     .gallery {
         height: 350px;
     }

     .gallery-item-park.gallery-item-park-selected {
         width: 450px;
         height: 300px;
     }

     .gallery-item-park {
         width: 280px;
         height: 200px;
     }
 }

 @media (max-width: 768px) {
     .gallery {
         height: 300px;
     }

     .gallery-controls {
         padding: 0 40px;
     }

     .gallery-controls-previous,
     .gallery-controls-next {
         width: 40px;
         height: 40px;
     }

     .gallery-item-park.gallery-item-park-selected {
         width: 350px;
         height: 250px;
     }

     .gallery-item-park {
         width: 220px;
         height: 160px;
     }

     .gallery-item-park.gallery-item-park-previous {
         left: 20%;
     }

     .gallery-item-park.gallery-item-park-next {
         left: 80%;
     }

     .gallery-item-park {
         box-shadow: none !important;
     }

     .gallery-item-park.gallery-item-park-selected {
         box-shadow: none !important;

     }

 }

 @media (max-width: 576px) {
     .gallery {
         height: 250px;
     }

     .gallery-item-park.gallery-item-park-selected {
         width: 280px;
         height: 200px;
     }

     .gallery-item-park {
         width: 180px;
         height: 130px;
     }

     .gallery-item-park.gallery-item-park-previous,
     .gallery-item-park.gallery-item-park-next {
         display: none;
     }

     .gallery-controls-previous,
     .gallery-controls-next {
         width: 35px;
         height: 35px;
     }
 }