  .swiper-container-fullscreen {
    width: 100%;
    position: relative;
  }

  #biopark-slider {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .slide-content {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .slide-text {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
  }

  .slide-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Manrope', sans-serif;
  }

  .slide-text p {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-family: 'Manrope', sans-serif;
  }

  /* Navigation buttons - Simple arrows */
  .swiper-button-next,
  .swiper-button-prev {
    color: white;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
  }

  /* Pagination */
  .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,0.5);
    border: 2px solid #b5ba24;
    opacity: 1;
    transition: all 0.3s ease;
  }

  .swiper-pagination-bullet-active {
    background: #b5ba24;
    transform: scale(1.2);
  }

  /* Mobile responsive */
  @media (max-width: 768px) {
    .swiper-container-fullscreen {
      height: auto;
  
    }
    
    .slide-content {
      height: auto;
    }
    
    .slide-image {
      height: auto;
      max-height: 50vh;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    .swiper-container-fullscreen {
      height: auto;

    }
    
    .slide-image {
      max-height: 40vh;
    }
  }
