/* .carousel-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
  }
  
  .carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .carousel-slide img {
    width: 100%;
    height: auto;
  }
  
  button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
  }
  
  #prevBtn {
    left: 0;
  }
  
  #nextBtn {
    right: 0;
  }
   */


   .left-menu {
    height: 100vh;
    background-color: #f8f9fa;
    position: sticky;
    top: 0;
    }

    .right-content {
    overflow-y: auto;
    height: 100vh;
    }

    .content-section {
    padding: 20px;
    }

    .content-section h2 {
    padding-top: 80px; /* Adds space for smooth scroll */
    margin-top: -80px; /* Offsets the anchor position */
    }