.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.tab-button {
  padding: 8px 18px;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: #EFEFED;
  color: #3a3a3a;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.tab-button:hover {
  background: #e0e0dc;
}

.tab-button.active {
  background: #0a0a0a;
  color: #ffffff;
}

.tab-content .tab-panel {
  display: none;
}

.tab-content .tab-panel.active {
  display: block;
}

.tab-content .tab-panel h2 {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin-top: 0;
}

.tab-content .tab-panel p {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #414141;
}
