/* [project]/src/components/sections/LegalHero.module.css [app-client] (css) */
.LegalHero-module__5gpasq__section {
  padding: calc(var(--space-3xl) * 1.5) 0 var(--space-2xl) 0;
  background-color: var(--color-bg-primary);
  text-align: center;
  border-bottom: 1px solid #0000000d;
}

.LegalHero-module__5gpasq__container {
  max-width: 800px;
  padding: 0 var(--space-xl);
  margin: 0 auto;
}

.LegalHero-module__5gpasq__title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  letter-spacing: -.02em;
  margin-bottom: var(--space-sm);
  font-size: 3rem;
  font-weight: 800;
}

.LegalHero-module__5gpasq__lastUpdated {
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .LegalHero-module__5gpasq__title {
    font-size: 2.25rem;
  }
}

/* [project]/src/components/sections/LegalArticle.module.css [app-client] (css) */
.LegalArticle-module__yEuPlq__sectionTitle {
  font-family: var(--font-heading, "Sora", sans-serif);
  color: #1a1a2e;
  align-items: center;
  gap: .75rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
}

.LegalArticle-module__yEuPlq__numberBadge {
  font-family: var(--font-heading, "Sora", sans-serif);
  color: #4954c8;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.LegalArticle-module__yEuPlq__content p {
  font-family: var(--font-body, "Manrope", sans-serif);
  color: #4a4a68;
  margin-bottom: 1rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.LegalArticle-module__yEuPlq__content p:has( > strong:only-child) {
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.LegalArticle-module__yEuPlq__content p > strong:only-child {
  font-family: var(--font-heading, "Sora", sans-serif);
  color: #1a1a2e;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  display: block;
}

.LegalArticle-module__yEuPlq__content strong {
  color: #1a1a2e;
  font-weight: 700;
}

:is(.LegalArticle-module__yEuPlq__content ul, .LegalArticle-module__yEuPlq__content ol) {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.LegalArticle-module__yEuPlq__content li {
  font-family: var(--font-body, "Manrope", sans-serif);
  color: #4a4a68;
  margin-bottom: .5rem;
  padding-left: 1.5rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  position: relative;
}

.LegalArticle-module__yEuPlq__content li:before {
  content: "";
  background-color: #4954c8;
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  position: absolute;
  top: .65em;
  left: 0;
}

.LegalArticle-module__yEuPlq__content ol {
  padding-left: 1.5rem;
  list-style: decimal;
}

.LegalArticle-module__yEuPlq__content ol li:before {
  display: none;
}

.LegalArticle-module__yEuPlq__content a {
  color: #4954c8;
  text-underline-offset: 4px;
  text-decoration: underline;
  transition: color .2s;
}

.LegalArticle-module__yEuPlq__content a:hover {
  color: #7a43b6;
}

.LegalArticle-module__yEuPlq__content br {
  line-height: .5;
}

/* [project]/src/components/sections/LegalContactBanner.module.css [app-client] (css) */
.LegalContactBanner-module__TnUmAq__banner {
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.LegalContactBanner-module__TnUmAq__text {
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.LegalContactBanner-module__TnUmAq__link {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  transition: color .3s;
}

.LegalContactBanner-module__TnUmAq__link:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .LegalContactBanner-module__TnUmAq__banner {
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
  }
}

/* [project]/src/components/ui/RevealOnScroll.module.css [app-client] (css) */
.RevealOnScroll-module__VmJH4W__reveal {
  will-change: opacity, transform;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(.25, .46, .45, .94);
}

.RevealOnScroll-module__VmJH4W__fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.RevealOnScroll-module__VmJH4W__fade-down {
  opacity: 0;
  transform: translateY(-40px);
}

.RevealOnScroll-module__VmJH4W__fade-left {
  opacity: 0;
  transform: translateX(-40px);
}

.RevealOnScroll-module__VmJH4W__fade-right {
  opacity: 0;
  transform: translateX(40px);
}

.RevealOnScroll-module__VmJH4W__fade {
  opacity: 0;
  transform: none;
}

.RevealOnScroll-module__VmJH4W__scale {
  opacity: 0;
  transform: scale(.92);
}

.RevealOnScroll-module__VmJH4W__visible {
  opacity: 1;
  transform: translateY(0)translateX(0)scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .RevealOnScroll-module__VmJH4W__reveal {
    opacity: 1 !important;
    transition: none !important;
    transform: none !important;
  }
}

/*# sourceMappingURL=src_components_245632d4._.css.map*/