.descInf .descInf-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, #333, transparent 95%);
  border-radius: 50px;
}

.descInf .descInf-tabs .nav-pills .nav-item2T {
  margin: 0 5px;
}

.descInf .descInf-tabs .nav-pills .nav-item2T:first-child {
  margin-left: 0;
}

.descInf .descInf-tabs .nav-pills .nav-item2T:last-child {
  margin-right: 0;
}

.descInf .descInf-tabs .nav-pills .nav-link2T {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  color: #333;
  transition: all 0.3s ease;
  border:none;
  font-size:1.05em;
}

.descInf .descInf-tabs .nav-pills .nav-link2T:hover {
  color: #009c87;
}

.descInf .descInf-tabs .nav-pills .nav-link2T.active {
  background-color: #009c87;
  color: #FFF;;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.descInf .descInf-tabs .nav-pills .nav-link2T i {
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .descInf .descInf-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .descInf .descInf-tabs .nav-pills .nav-item2T {
    margin: 5px;
  }
}

.descInf .descInf-list .descInf-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.descInf .descInf-list .descInf-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.descInf .descInf-list .descInf-item h3 {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
}

.descInf .descInf-list .descInf-item h3:hover {
  background-color: color-mix(in srgb, #009c87, transparent 95%);
}

.descInf .descInf-list .descInf-item h3 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  background-color: color-mix(in srgb, #009c87, transparent 85%);
  color: #009c87;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.descInf .descInf-list .descInf-item h3 .question {
  flex: 1;
}

.descInf .descInf-list .descInf-item h3 .descInf-toggle {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: color-mix(in srgb, #333, transparent 30%);
  margin-left: 15px;
}

.descInf .descInf-list .descInf-item .descInf-content {
  padding: 15px;
  display: none;
}

.descInf .descInf-list .descInf-item .descInf-content p {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.descInf .descInf-list .descInf-item .descInf-content p:last-child {
  margin-bottom: 0;
  overflow: hidden;
}

.descInf .descInf-list .descInf-item.descInf-active h3 {
  background-color: color-mix(in srgb, #009c87, transparent 90%);
}

.descInf .descInf-list .descInf-item.descInf-active h3 .descInf-toggle {
  transform: rotate(45deg);
  color: #009c87;
}

.descInf .descInf-list .descInf-item.descInf-active .descInf-content {
  display: block;
}

.descInf .descInf-cta {
  background-color: color-mix(in srgb, #009c87, transparent 92%);
  padding: 30px;
  border-radius: 10px;
}

.descInf .descInf-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.descInf .descInf-cta .btn-primary {
  background-color: #009c87;
  border-color: #009c87;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.descInf .descInf-cta .btn-primary:hover {
  background-color: color-mix(in srgb, #009c87, #000 15%);
  border-color: color-mix(in srgb, #009c87, #000 15%);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .descInf .descInf-list .descInf-item h3 {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .descInf .descInf-list .descInf-item h3 .num {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 0.8rem;
  }

  .descInf .descInf-list .descInf-item .descInf-content .content-inner {
    padding: 0 20px;
  }

  .descInf .descInf-list .descInf-item .descInf-content.descInf-active .content-inner {
    padding: 15px 20px;
  }
}
