* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", system-ui, sans-serif;
  color: #111827;
  background: radial-gradient(circle at top left, #dfeaff 0%, #ffffff 45%, #f2fbff 100%);
}

h1,
h2,
h3,
h4 {
  font-family: "Unbounded", "Work Sans", sans-serif;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ details/summary custom styles */
.faq-item {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq-item summary {
  flex-wrap: wrap;
  min-width: 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: #1b5bff;
  width: 24px;
  text-align: center;
}

.faq-item[open] summary::after {
  content: '−';
}
