.custom-tabs .tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.custom-tabs .tab {
  padding: 15px 35px;
  font-weight: 500;
  text-transform: capitalize;
  background: #F1F1F1;
  color: #375668;
  border: 1px solid #375668;
  border-radius: 30px;
    line-height: normal;
}
.custom-tabs .tab.active {
  background: #F17647;
  color: #fff;
  border: 1px solid #F17647; 
}
.custom-tabs .tab-title,
.custom-tabs .tab-content {
  display: none; 
}
.custom-tabs .tab-content.active {
  display: block;
}

@media (max-width: 768px) {
  .custom-tabs .tabs {
    display: none;
  }
  .custom-tabs .tab-content {
    display: block;
    border: none;
    padding: 0;
    margin-bottom: 10px;
  }
  .custom-tabs .tab-title {
    display: block;
    font-weight: 500;
    background: #F1F1F1;
    padding: 13px 20px;
    border: 1px solid #ccc;
    cursor: pointer;
    color: #375668;
    border-radius: 8px;
    line-height: normal;
    text-align: center;
  }
  .custom-tabs .tab-title.active {
    background: #F17647;
    color: #fff;
  }
  .custom-tabs .tab-body {
    display: none; 
    border: 1px solid #F17647;
    border-top: none;
  }
  .custom-tabs .tab-body.open {
    display: block;
  }
}
