/* ===== LEGAL PAGE STYLES ===== */
.legal-content {
  max-width: 880px;
  margin: 0 auto;
}

.legal-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: var(--bg-section);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}
.legal-meta i {
  color: var(--primary);
  font-size: 18px;
}
.legal-meta span {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.legal-section {
  margin-bottom: 36px;
}
.legal-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.legal-section-header .section-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.legal-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--dark);
  margin: 0;
}
.legal-section p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 12px;
}
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.legal-section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.legal-section .sub-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin: 16px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal-section .note-box {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* ===== CONTACT CARD (LEGAL) ===== */
.legal-contact-card {
  background: var(--bg-section);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 20px;
}
.legal-contact-card .contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-light);
}
.legal-contact-card .contact-row:last-child {
  margin-bottom: 0;
}
.legal-contact-card .contact-row i {
  color: var(--primary);
  width: 20px;
  text-align: center;
  font-size: 15px;
}
.legal-contact-card .contact-row a {
  color: var(--primary);
  font-weight: 500;
}
.legal-contact-card .contact-row a:hover {
  text-decoration: underline;
}
