/* ===== Luxury Steel Work LLC — Legal page stylesheet =================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

.legal-page {
  background-color: #12161D;
  color: #E8ECF1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

.legal-page a { color: #C08A3E; text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }

.legal-header {
  background-color: #12161D;
  border-bottom: 3px solid #C08A3E;
  border-top: 3px solid #C08A3E;
  padding: 26px 0;
  position: relative;
}
.legal-header .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-header .brand {
  font-size: 20px;
  letter-spacing: 3px;
  color: #C08A3E;
  text-transform: uppercase;
  font-weight: bold;
}
.legal-header .brand small {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: #A9B7C6;
  text-transform: uppercase;
  margin-top: 4px;
}

.legal-title {
  background-color: #0E1116;
  padding: 44px 0;
  border-bottom: 1px solid #2A323D;
}
.legal-title h1 {
  font-size: 38px;
  color: #F4F6F8;
}
.legal-title .updated {
  margin-top: 10px;
  color: #C08A3E;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.legal-content { padding: 40px 0 30px; }
.legal-content .container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content .toc {
  background-color: #1A2029;
  border: 1px solid #2A323D;
  padding: 28px 32px;
  margin-bottom: 48px;
}
.legal-content .toc h2 {
  color: #C08A3E;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.legal-content .toc ol {
  list-style: none;
  counter-reset: toc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 30px;
}
.legal-content .toc li {
  counter-increment: toc;
}
.legal-content .toc li::before {
  content: counter(toc, decimal-leading-zero);
  color: #C08A3E;
  margin-right: 10px;
  font-weight: bold;
}
.legal-content .toc a { color: #A9B7C6; font-size: 14px; }
.legal-content .toc a:hover { color: #C08A3E; }

.legal-page .legal-content section {
  margin-bottom: 40px;
  background-color: transparent !important;
}
.legal-content section {
  margin-bottom: 40px;
  background-color: transparent !important;
}
.legal-content section h2 {
  color: #C08A3E;
  font-size: 24px;
  margin-bottom: 14px;
  padding-top: 6px;
}
.legal-content section p {
  color: #C7CFD9;
  margin-bottom: 14px;
  text-align: justify;
}
.legal-content section p strong { color: #F4F6F8; }
.legal-content section ul {
  margin: 0 0 14px 24px;
  color: #C7CFD9;
}
.legal-content section ul li { margin-bottom: 8px; }

.legal-footer {
  background-color: #0E1116;
  border-top: 4px solid #C08A3E;
  padding: 30px 0;
}
.legal-footer .container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.legal-footer p { color: #7d8a99; font-size: 13px; }
.legal-footer a { color: #C08A3E; }

@media (max-width: 720px) {
  .legal-content .toc ol { grid-template-columns: 1fr; }
  .legal-title h1 { font-size: 30px; }
}
