/* Legal Pages Styles */

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #303163;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 10px;
}

.legal-section h3 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  color: #303163;
}

.legal-section p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.legal-section ul, 
.legal-section ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.legal-section li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.legal-section a {
  color: #DA0032;
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

/* Table of Contents */
.legal-toc {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.legal-toc h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-toc li {
  margin-bottom: 10px;
}

.legal-toc a {
  color: #303163;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: all 0.2s;
}

.legal-toc a:hover {
  color: #DA0032;
  padding-left: 5px;
}

/* Contact Information */
.legal-contact {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
}

.legal-contact h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.legal-contact p {
  margin-bottom: 10px;
}

/* Last Updated */
.last-updated {
  color: #6c757d;
  font-style: italic;
  margin-top: 40px;
  text-align: right;
}

/* Table Styles */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.legal-table th,
.legal-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.legal-table th {
  background-color: #f8f9fa;
  font-weight: 500;
  color: #303163;
}

.legal-table tr:hover {
  background-color: #f8f9fa;
}

/* Definition Lists */
.legal-section dl {
  margin-bottom: 20px;
}

.legal-section dt {
  font-weight: 600;
  margin-bottom: 5px;
  color: #303163;
}

.legal-section dd {
  margin-left: 20px;
  margin-bottom: 15px;
}

/* Highlights */
.highlight-box {
  background-color: rgba(218, 0, 50, 0.05);
  border-left: 3px solid #DA0032;
  padding: 15px 20px;
  margin-bottom: 20px;
}

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