@charset "UTF-8";
/* ==========================================
   Legal Pages (Terms of Service, Privacy Policy)
   Editorial, premium monochrome theme
   ========================================== */
.legal-page {
  background-color: #f4f4f1;
  color: #3c3c3c;
  padding: 48px 20px 120px;
  min-height: 100vh;
  direction: rtl;
}
.legal-page .legal-container {
  max-width: 820px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 72px 64px;
  border-radius: 14px;
  border: 1px solid #e6e4de;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.03);
}
.legal-page .legal-container h1 {
  font-family: "Heebo", sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  color: #000000;
  margin-bottom: 14px;
  text-align: center;
  letter-spacing: 0.5px;
}
.legal-page .legal-container .last-updated {
  text-align: center;
  color: #6b6b68;
  font-size: 0.92rem;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 28px;
}
.legal-page .legal-container .last-updated::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9c7ba, transparent);
}
.legal-page .legal-container section.legal-section {
  margin-bottom: 52px;
  scroll-margin-top: 130px;
}
.legal-page .legal-container section.legal-section:last-child {
  margin-bottom: 0;
}
.legal-page .legal-container section.legal-section .section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e6e4de;
  padding-bottom: 14px;
}
.legal-page .legal-container section.legal-section .section-head h2 {
  font-weight: 700;
  font-size: 1.4rem;
  color: #000000;
  line-height: 1.3;
  margin: 0;
}
.legal-page .legal-container section.legal-section p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #3c3c3c;
  margin-bottom: 16px;
}
.legal-page .legal-container section.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-page .legal-container section.legal-section .term-label {
  font-weight: 700;
  color: #000000;
}
.legal-page .legal-container section.legal-section ul {
  list-style-type: none;
  padding-right: 0;
  margin-bottom: 16px;
  color: #3c3c3c;
}
.legal-page .legal-container section.legal-section ul li {
  position: relative;
  padding-right: 22px;
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 1.05rem;
  /* נקודה שחורה מעוצבת לרשימות */
}
.legal-page .legal-container section.legal-section ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background-color: #000000;
  border-radius: 50%;
}
.legal-page .legal-container section.legal-section .contact-card {
  margin-top: 24px;
  border: 1px solid #e6e4de;
  border-radius: 8px;
  padding: 28px 32px;
  background-color: #f4f4f1;
}
.legal-page .legal-container section.legal-section .contact-card .contact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid #e6e4de;
}
.legal-page .legal-container section.legal-section .contact-card .contact-row:last-child {
  border-bottom: none;
}
.legal-page .legal-container section.legal-section .contact-card .contact-key {
  color: #6b6b68;
  font-size: 0.92rem;
}
.legal-page .legal-container section.legal-section .contact-card .contact-value {
  color: #000000;
  font-weight: 600;
  font-size: 1rem;
}

/* התאמה למסכים קטנים */
@media (max-width: 768px) {
  .legal-page {
    padding: 24px 15px 70px;
  }
  .legal-page .legal-container {
    padding: 44px 24px;
  }
  .legal-page .legal-container h1 {
    font-size: 1.9rem;
  }
  .legal-page .legal-container section.legal-section .section-head {
    gap: 12px;
  }
  .legal-page .legal-container section.legal-section .section-head h2 {
    font-size: 1.2rem;
  }
  .legal-page .legal-container .contact-card {
    padding: 20px 20px;
  }
  .legal-page .legal-container .contact-card .contact-row {
    flex-direction: column;
    gap: 4px;
  }
}

.hours-list {
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
