.legal-page .legal-shell {
  padding-bottom: 60px;
  padding-top: 140px;
}
.legal-page .legal-hero {
  margin-bottom: 60px;
}
.legal-page .legal-hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.legal-page .legal-content .container {
  max-width: 900px;
}
.legal-page .legal-content .legal-kicker {
  margin: 0 0 8px;
  color: var(--dv-purple-400);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-page .legal-content h1 {
  margin: 0 0 15px;
}
.legal-page .legal-content h2,
.legal-page .legal-content h3,
.legal-page .legal-content h4,
.legal-page .legal-content h5,
.legal-page .legal-content h6 {
  margin: 30px 0 15px;
}
.legal-page .legal-content ol li,
.legal-page .legal-content ul li {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.legal-page .legal-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 15px;
}
.legal-page .legal-content a {
  line-height: 1.7;
  text-decoration: underline;
  color: var(--dv-purple-400);
}
.legal-page .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-page .faq-accordion .tab {
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  position: relative;
}
.legal-page .faq-accordion .tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.legal-page .faq-accordion .tab .tab-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease-out;
}
.legal-page .faq-accordion .tab input:checked ~ .tab-content {
  max-height: 10rem;
}
.legal-page .faq-accordion .tab .tab-label {
  display: flex;
  color: #fff;
  cursor: pointer;
  justify-content: space-between;
  padding: 1rem;
}
.legal-page .faq-accordion .tab .tab-label::after {
  content: '\276F';
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  transform-origin: 50% 50%;
  display: flex;
  transition: all 0.3s ease-out;
  color: var(--dv-purple-400);
}
.legal-page .faq-accordion .tab input:checked + .tab-label::after {
  transform: rotate(270deg);
}
.legal-page .faq-accordion .tab .tab-content p {
  margin: 0;
  padding: 20px;
  border-top: 1px solid rgba(123, 97, 255, 0.2);
}
@media (hover: hover) {
  .legal-page .faq-accordion .tab input:not(:checked) + .tab-label:hover::after {
    animation: bounce 0.5s infinite;
  }
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(0.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-0.25rem);
  }
}
