
/* --- Section Layout --- */
.legals-section {
  padding: 80px 0; /* More breathing room top/bottom */
}

.privacy-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px; /* Internal spacing */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* --- Typography Wrapper (Refactoring Magic) --- */
/* By using this wrapper, we don't need class="text-light" on every element */
.legal-content {
  /* font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
  color: var(--text-main);
}

/* Main Title */
.legal-content .doc-title {
  color: var(--accent-color);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

/* Last Updated */
.legal-content .doc-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

/* Paragraphs */
.legal-content p {
  font-size: 1.125rem; /* 18px */
  line-height: 1.7;    /* Critical for reading long text */
  margin-bottom: 1.5rem;
  color: #cbd5e1;      /* Slightly softer white for body text */
}

/* Headings */
.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;    /* distinct separation from previous section */
  margin-bottom: 1rem;
  color: #fff;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* Lists */
.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  font-size: 1.125rem; /* 18px - Matched to Paragraphs for consistency */
  line-height: 1.7;
  margin-bottom: 0.75rem; /* Space between list items */
  color: #cbd5e1;
}

.legal-content li strong {
  color: #fff; 
  font-weight: 600;
}

.footer-desc{
  font-size: 12px !important;
}

.footer-sitename{
  font-size: 28px !important;
}

#hero-color-mark{
  width: 80px;
  height: 12px;
  content:"";
  display: block;
}

.hero-video {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  inset: 0;

  background: linear-gradient(
  to right,
  rgba(2, 12, 25, 1) 0%,
  rgba(2, 12, 25, 0.75) 40%,
  rgba(2, 12, 25, 0.6) 70%,
  rgba(2, 12, 25, 0.20) 100%
);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-text-wrapper{
  z-index: 20 !important;
}

.hero .container {
  position: relative;
  z-index: 3;
}
/* text */
#hero-title,
#hero-subtitle {
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

/* ENTER */
.hero-enter-left {
  opacity: 0;
  transform: translateX(-32px);
}

.hero-enter-right {
  opacity: 0;
  transform: translateX(32px);
}

/* EXIT */
.hero-exit-left {
  opacity: 0;
  transform: translateX(-32px);
}

.hero-exit-right {
  opacity: 0;
  transform: translateX(32px);
}

/* VISIBLE */
.hero-active {
  opacity: 1;
  transform: translateX(0);
}


/* hero video -- END */

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-video {
    min-height: 60vh;
  }
  .privacy-card {
    padding: 25px;
  }
  .legal-content p, 
  .legal-content li {
    font-size: 1rem; /* 16px on mobile is standard */
  }
}