.tabs-section {
  padding: 4rem 1rem;
  /* background: linear-gradient(to right, #f6f9fc, #eef2f5); */
  font-family: 'Segoe UI', sans-serif;
}

.tabs-container {
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff00;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Tab nav */
.tabs-nav {
  display: flex;
  background: #212121;
  /* background: linear-gradient(90deg, #00b4db, #0083b0); */
  list-style: none;
  margin: 0;
  padding: 0;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tab:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.tab svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.tab.active {
  /* background-color: rgba(255, 255, 255, 0.2); */
  background-color: #dc3545;
  font-weight: 600;
}

/* Content panes */
.tabs-content {
  padding: 2rem;
  background-color: #fff;
}

.tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Typography */
.tab-pane h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.tab-pane p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
