/* Vagmi legal pages (privacy, terms) — intentionally minimal, no JS, fast to load. */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #fafbff;
  color: #1f1a6b;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0124c7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.legal-header {
  background: linear-gradient(135deg, #0124c7 0%, #1f1a6b 100%);
  padding: 18px 0;
}

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.legal-brand img {
  height: 36px;
  width: auto;
  display: block;
}

.legal-nav a {
  color: #e4e7ff;
  font-size: 14px;
  margin-left: 20px;
  font-weight: 500;
}

.legal-nav a:hover {
  color: #ffff00;
  text-decoration: none;
}

/* Main */
.legal-main {
  padding: 48px 24px 80px;
}

.legal-crumb {
  font-size: 13px;
  color: #6e7bd6;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-crumb a {
  color: #6e7bd6;
}

h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: #1f1a6b;
  font-weight: 700;
}

h2 {
  font-size: 22px;
  margin: 36px 0 10px 0;
  color: #1f1a6b;
  font-weight: 700;
}

p {
  margin: 0 0 14px 0;
}

ul,
ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

ul li,
ol li {
  margin-bottom: 8px;
}

ol.legal-alpha {
  list-style: lower-alpha;
}

.legal-meta {
  background: #eef0ff;
  border-left: 4px solid #0124c7;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  margin: 0 0 28px 0;
  color: #1f1a6b;
}

.legal-foot-note {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #d8dcf2;
  font-size: 14px;
  color: #555a8a;
}

/* Footer */
.legal-footer {
  background: #1f1a6b;
  color: #c8cdf2;
  padding: 22px 0;
  font-size: 13px;
}

.legal-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-footer a {
  color: #c8cdf2;
}

.legal-footer a:hover {
  color: #ffff00;
  text-decoration: none;
}

.legal-sep {
  margin: 0 8px;
  color: #4d4f8a;
}

@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 19px;
  }

  .legal-main {
    padding: 28px 18px 56px;
  }

  .legal-nav a {
    margin-left: 12px;
    font-size: 13px;
  }
}

/* DheeYantra brand (logo + tagline) on legal pages.
   Logo is transparent PNG; filter forces white render on dark header.
   Tagline absolutely positioned so `left: 21%` resolves against the
   logo's display width. */
.legal-brand {
  display: inline-block;
  position: relative;
}

.legal-brand .brand-logo {
  filter: brightness(0) invert(1);
  height: 40px;
  width: auto;
  display: block;
}

.legal-brand .brand-tagline {
  position: absolute;
  top: 100%;
  left: 35%;
  margin-top: 3px;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ffff00;
  opacity: 0.85;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .legal-brand .brand-logo {
    height: 32px;
  }
  .legal-brand .brand-tagline {
    font-size: 12px;
    letter-spacing: 1.1px;
  }
}
