:root {
  --navy: #07111f;
  --navy2: #0c1828;
  --blue: #2865c7;
  --green: #0f7d70;
  --yellow: #f4c400;
  --text: #172033;
  --muted: #697386;
  --bg: #f4f6fa;
  --card: #ffffff;
  --border: #dce2ea;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Noto Sans Hebrew", sans-serif;
  color: var(--text);
  background: var(--bg);
  direction: rtl;
}

a {
  color: inherit;
}

.legal-page {
  direction: rtl;
  text-align: right;
  padding: 60px 20px;
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 46px 54px;
  box-shadow: var(--shadow);
  line-height: 1.85;
}

.legal-content h1 {
  margin: 0 0 24px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.2;
  font-weight: 900;
  color: var(--navy);
}

.legal-content h2 {
  margin: 42px 0 16px;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 900;
  color: var(--navy);
}

.legal-content h3 {
  margin: 30px 0 12px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
  color: var(--text);
}

.legal-content p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.85;
  color: #344054;
}

.legal-content ul {
  margin: 0 0 22px;
  padding-right: 24px;
  padding-left: 0;
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.75;
  color: #344054;
}

.legal-content strong {
  color: var(--navy);
}

@media (max-width: 820px) {
  .legal-page {
    padding: 30px 14px;
  }

  .legal-content {
    padding: 30px 22px;
    border-radius: 16px;
  }

  .legal-content h1 {
    font-size: 34px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 16px;
  }
}