:where([class^="ri-"])::before { content: "\f3c2"; }
.custom-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}
.custom-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .toggle-slider {
  background-color: #0284c7;
}
input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

/* Terms-specific styles */
.terms-section {
  margin-bottom: 2rem;
}

.terms-section h3 {
  color: #0284c7;
  margin-bottom: 1rem;
}

.terms-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.terms-section ul li {
  margin-bottom: 0.5rem;
}

.terms-section ol {
  padding-left: 1.5rem;
  list-style-type: decimal;
  margin-bottom: 1rem;
}

.terms-section ol li {
  margin-bottom: 0.5rem;
}

.terms-updated {
  font-style: italic;
  color: #6b7280;
}