/* Styling for the Privacy Policy and Terms pages. Built on the site's
   existing CSS variables (--color-primary, --color-title, etc.) so the legal
   pages share the brand look. */

/* Pricing page: replace the section's default gradient with the banner image. */
.pricing-page .pricing.area-11 {
  background: url("/assets/images/banner/shape/contact-bg.jpg") center top / cover no-repeat;
}

/* Heading + subtitle use the heading color (overrides the section's white text). */
.pricing-page .pricing.area-11 .section-head .section-head__title,
.pricing-page .pricing.area-11 .section-head .section-head__subtitle {
  color: var(--color-heading1, var(--color-title));
}

.pricing-page .pricing.area-11 .section-head .desc {
 color:var(--color-heading-1);
}

.legal-area {
  background: var(--color-white, #fff);
}

.legal-area .section-head__title {
  margin-bottom: 18px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 6px;
}

.legal-meta__item {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary, #4755ff);
  background: rgba(71, 85, 255, 0.08);
  border: 1px solid rgba(71, 85, 255, 0.18);
  border-radius: 40px;
  padding: 6px 16px;
  line-height: 1.4;
}

.legal-content {
  max-width: 920px;
  margin: 56px auto 0;
  color: var(--color-black, #2a2a2c);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content > section + section {
  margin-top: 40px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-title, #26262c);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border, #ececf1);
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-title, #26262c);
  margin: 28px 0 12px;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content strong {
  color: var(--color-title, #26262c);
  font-weight: 600;
}

.legal-content a {
  color: var(--color-primary, #4755ff);
  text-decoration: none;
  font-weight: 500;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 4px;
  list-style: none;
}

.legal-content ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary, #4755ff);
}

.legal-content .legal-intro {
  background: rgba(71, 85, 255, 0.05);
  border: 1px solid rgba(71, 85, 255, 0.14);
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 8px;
}

.legal-content .legal-notice {
  background: rgba(255, 143, 60, 0.08);
  border-left: 4px solid var(--color-warning, #ff8f3c);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 18px 0;
  font-size: 15px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 0 0 16px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 480px;
}

.legal-content table th,
.legal-content table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 16px;
  border: 1px solid var(--color-border, #ececf1);
}

.legal-content table th {
  background: rgba(71, 85, 255, 0.06);
  color: var(--color-title, #26262c);
  font-weight: 600;
}

.legal-content table tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.015);
}

.legal-footer-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border, #ececf1);
  font-size: 14px;
  color: rgba(42, 42, 44, 0.7);
}

@media (max-width: 575px) {
  .legal-content {
    font-size: 15px;
    margin-top: 40px;
  }
  .legal-content h2 {
    font-size: 21px;
  }
}
