  .slider-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .slider-wrapper {
    display: flex;
    transition: transform 0.4s ease;
  }
  
  .slider-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Added for absolute positioning of link */
  }
  
  .slider-slide img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
  }
  
  .slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
  }
  
  .slider-button.prev {
    left: 10px;
  }
  
  .slider-button.next {
    right: 10px;
  }
  
  .slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  
  .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .slider-dot.active {
    background: #333;
  }
  
  /* Register link styling */
  .register-link {
    position: absolute;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: bold;
    bottom: 8%;  
    left: 5%; 
    color: white;
    text-decoration: underline;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 3;
  }
  
  /* Responsive styles */
  @media (max-width: 480px) {
    .slider-container {
      max-width: 280px;
    }
    
    .slider-slide img {
      max-height: 240px;
    }
    
    .register-link {
        position: absolute;
        font-size: 1rem;
        font-style: italic;
        font-weight: bold;
        bottom: 8%;  
        left: 5%; 
        color: white;
        text-decoration: underline;
        font-weight: bold;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 5px 10px;
        border-radius: 4px;
        z-index: 3;
  }
    
  }
  
  @media (min-width: 481px) and (max-width: 767px) {
    .slider-container {
      max-width: 400px;
    }
    
    .slider-slide img {
      max-height: 300px;
    }
    
    .register-link {
        position: absolute;
        font-size: 1rem;
        font-style: italic;
        font-weight: bold;
        bottom: 8%;  
        left: 5%; 
        color: white;
        text-decoration: underline;
        font-weight: bold;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 5px 10px;
        border-radius: 4px;
        z-index: 3;
  }
  }