* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #1a1a1a;
}

.legal_page {
  min-height: 100vh;
  background-color: #f4f4f4;
}

/* ── Header ───────────────────────────────────────────────── */
.legal_header {
  background-color: #1a1a1a;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal_back {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}

.legal_back:hover { color: #fff; }

.legal_logo {
  height: 40px;
}

/* ── Content ──────────────────────────────────────────────── */
.legal_cont {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 80px 24px;
}

/* ── Title block ──────────────────────────────────────────── */
.legal_title_block {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e0e0e0;
}

.legal_title_block h1 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.legal_effective {
  font-size: 13px;
  color: #999;
}

/* ── Intro box ────────────────────────────────────────────── */
.legal_intro {
  background: #fff;
  border-left: 5px solid #b60000;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ── Sections ─────────────────────────────────────────────── */
.legal_section {
  background: #fff;
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.legal_section h2 {
  font-size: 17px;
  font-weight: 700;
  color: #b60000;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.legal_section h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 16px 0 10px 0;
}

.legal_section p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal_section p:last-child { margin-bottom: 0; }

.legal_section ul {
  padding-left: 20px;
  margin-top: 8px;
}

.legal_section ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal_section a {
  color: #b60000;
  text-decoration: none;
  font-weight: 600;
}

.legal_section a:hover { text-decoration: underline; }

/* ── Contact card ─────────────────────────────────────────── */
.legal_contact_card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 16px;
}

.legal_contact_card p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
}

.legal_contact_card a {
  color: #b60000;
  text-decoration: none;
  font-weight: 600;
}

/* ── Footer ───────────────────────────────────────────────── */
.legal_footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

.legal_footer p {
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
}

.legal_footer_links {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
}

.legal_footer_links a {
  color: #b60000;
  text-decoration: none;
  font-weight: 600;
}

.legal_footer_links a:hover { text-decoration: underline; }

.legal_footer_links span { color: #ccc; }

@media (max-width: 768px) {
  .legal_header  { padding: 14px 20px; }
  .legal_cont    { padding: 32px 16px 60px 16px; }
  .legal_section { padding: 20px; }
  .legal_title_block h1 { font-size: 24px; }
}