.vertical-tabs-module .tabs-container {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    padding: 20px;
    gap: 40px;
  }
  
  .tabs-menu {
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .tab-btn {
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    color: #8E8E8E;
    cursor: pointer;
    padding: 10px 0;
    border-left: 0;
    transition: all 0.2s ease;
  }

  .tab-btn:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  
  .tab-btn:hover {
    background-color: transparent !important;
  color: #ed983a !important;
  border: none !important;
    
  }

  .tab-btn.active {
    color: #ed983a !important;
    background-color: #ffffff !important;
    border: 1px solid #ffffff !important;
    border-bottom: 2px solid #ed983a !important;
  }
  
  .tabs-content {
    flex: 1;
  }
  
  .tab-content {
    display: none;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .tab-content.active {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  
  .tab-text {
    flex: 1;
  }

  .tab-text ul{
    text-align: left;
  }
  
  .tab-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .tab-text p,
  .tab-text div {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
  }
  
  .tab-image {
    flex: 1;
    max-width: 400px;
  }
  
  .tab-image img {
    max-width: 100%;
    border-radius: 12px;
  }
  
  .custom-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
  }
  
  .custom-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
  }
  
  .custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background-color: #ED983A;
    border-radius: 50%;
  }

  /*-- Responsive ---*/
  
  @media screen and (max-width: 768px) {
    .tabs-container {
      flex-direction: column !important;
    }

    .tab-text {
        flex: 1;
        text-align: center !important;
    }
  
    .tabs-menu {
      width: 100%;
      flex-direction: row;
      overflow-x: auto;
      border-bottom: 1px solid #ddd;
    }
  
    .tab-btn {
      flex: 1;
      text-align: center !important;
      border-left: none;
      border-bottom: 3px solid transparent;
    }

    .tab-text p {
      
        text-align: center !important;
    }
  
    .tab-btn.active {
      border-bottom: 3px solid #ED983A;
    }
  
    .tab-content.active {
      flex-direction: column !important;
    }  
    
    .tab-image {
      max-width: 100% !important;
    } 
    }
  }

@media screen and (max-width: 767px) {
  .tabs-menu {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-color: orange transparent !important; /* Firefox */
    scrollbar-width: thin; /* Firefox */
    
  }

  .tabs-menu::-webkit-scrollbar {
    height: 6px;
  }

  .tabs-menu::-webkit-scrollbar-track {
    background: transparent;
  }

  .tabs-menu::-webkit-scrollbar-thumb {
    background-color: orange;
    border-radius: 10px;
  }

  .tabs-menu::-webkit-scrollbar-thumb:hover {
    background-color: darkorange;
  }
}


  