/* =========================================================
   LEGAL PAGES
   Privacy Policy, Terms & Conditions, Cookies
========================================================= */

.legal-page {
  padding-bottom: clamp(46px, 7vw, 88px);
}

/* =========================================================
   INTRO
========================================================= */

.legal-intro {
  max-width: 820px;
  margin: 0 auto clamp(24px, 5vw, 38px);
  text-align: center;
}



.legal-intro p {
  color: #5d6670;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(22, 34, 46, 0.08);
  color: #2d3a45;
  font-size: 13px;
  font-weight: 800;
}

/* =========================================================
   JUMP LINKS
========================================================= */

.legal-jump-wrap {
  max-width: 880px;
  margin: 0 auto clamp(32px, 5vw, 52px);
  text-align: center;
}

.legal-jump-title {
  margin: 0 0 14px;
  color: #202a35;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.legal-jump-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.legal-jump-links .btn {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 13px;
  line-height: 1.15;
}

.legal-jump-links .btn {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 13px;
  line-height: 1.15;
}

/* =========================================================
   OPEN TEXT SECTIONS
========================================================= */


.legal-section {
  padding: clamp(28px, 5vw, 44px) 0;
  border-top: 1px solid rgba(22, 34, 46, 0.11);
  scroll-margin-top: 115px;
}

.legal-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-section-top {
  margin-bottom: 10px;
}

.legal-section-kicker {
  margin-bottom: 0;
}

.legal-section h3 {
  margin: 24px 0 10px;
  color: #202a35;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.legal-section p,
.legal-section li {
  color: #596674;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-section strong {
  color: #273541;
}

/* =========================================================
   CALLOUTS
========================================================= */

.legal-callout {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 4px solid #00aeef;
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.42);
}

.legal-callout p {
  margin: 0;
}

/* =========================================================
   TABLES
========================================================= */

.legal-table-wrap {
  overflow-x: auto;
  margin: 20px 0 4px;
  border-radius: 14px;
  border: 1px solid rgba(22, 34, 46, 0.1);
  background: rgba(255, 255, 255, 0.38);
}

.legal-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px 15px;
  border-bottom: 1px solid rgba(22, 34, 46, 0.08);
  color: #596674;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: #202a35;
  background: rgba(255, 255, 255, 0.52);
  font-weight: 900;
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: 0;
}

/* =========================================================
   LINKS
========================================================= */

.legal-link {
  color: #008fcb;
  font-weight: 850;
  text-decoration: none;
}

.legal-link:hover {
  text-decoration: underline;
}

/* =========================================================
   CONTACT CTA
========================================================= */

.legal-contact-card {
  max-width: 860px;
  margin: clamp(28px, 5vw, 46px) auto 0;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 18px;
  background: #17212b;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 42px rgba(22, 34, 46, 0.14);
}

.legal-contact-card .section-kicker {
  color: #00aeef;
}

.legal-contact-card .section-title {
  max-width: 680px;
  margin: 0 auto 12px;
  color: #ffffff;
}

.legal-contact-card p {
  max-width: 640px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.legal-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {
  .legal-intro {
    margin-top: 34px;
  }

  .legal-jump-links {
    justify-content: stretch;
  }

  .legal-jump-links .btn {
    width: 100%;
  }

  .legal-section .section-title {
    max-width: none;
  }

  .legal-contact-actions {
    flex-direction: column;
  }

  .legal-contact-actions .btn {
    width: 100%;
  }
}