/* css/policy/policy.css */

#policy {
  padding: 4em 2em;
  background: #fcfcfc;
  max-width: 1000px;
  margin: 0 auto;
}

.longsection-title {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 2rem;
  font-weight: bold;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-buttons button {
  padding: 0.6em 1.2em;
  background: #eee;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.tab-buttons button.active {
  background: #333;
  color: #fff;
}

.tab-content {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  min-height: 300px;
  overflow: hidden;
  color: #333;
  line-height: 1.8;
  font-size: 0.95rem;
}

.tab-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  color: #222;
  font-weight: bold;
}

.tab-content p {
  margin-bottom: 1rem;
  color: #555;
}
