<style>
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&display=swap');

.tabs-container {
  font-family: 'DM Sans', sans-serif;
  max-width: 1200px;
  margin: 2rem auto;
}
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}
.tab-button {
  padding: 0.75rem 1.25rem;
  border: none;
  background: #f2f4f7;
  color: #333;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}
.tab-button.active {
  background: #8d89fd;
  color: white;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.accordion {
  margin-bottom: 1rem;
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: #f9f9fb;
  border: 1px solid #ddd;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
}
.accordion-body {
  display: none;
  padding: 1rem;
  border: 1px solid #ddd;
  border-top: none;
  background: #fff;
}
.accordion-header.open + .accordion-body {
  display: block;
}
.link-highlight {
  color: #8d89fd;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.link-highlight:hover {
  border-bottom-color: #8d89fd;
}
</style>
