.inet-st-tabs-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 0px;
  overflow: hidden;
  margin: 20px auto;
  max-width: 900px;
}

.inet-st-tabs {
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  flex-wrap: wrap;
}

.inet-st-tab {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  text-align: center;
  flex: 1;
  justify-content: center;
  min-width: 150px;
}

.inet-st-tab:hover {
  background: rgba(255, 255, 255, 0.15);
}

.inet-st-tab.active {
  background: rgba(255, 255, 255, 0.2);
  color: #3B3663;
}

.inet-st-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #2196F3);
}

.inet-st-tab i {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .inet-st-tab {
    padding: 12px 10px;
    font-size: 0.9rem;
  }
  .inet-st-tab i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .inet-st-tabs {
    flex-direction: column;
  }
  .inet-st-tab {
    padding: 12px;
    justify-content: flex-start;
  }
}

.iframe-container {
    display: none;
    width: 100%;
    height: 650px;
  }
  
  .iframe-container.active {
    display: block;
  }
  
