/**
 * Legal Pages Styles
 * Clean, readable design for legal documents
 */

.legal-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #2c3e50;
  line-height: 1.8;
}

.legal-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  border-bottom: 3px solid #0088cc;
  padding-bottom: 15px;
}

.legal-content .subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 30px;
}

.legal-content .last-updated,
.legal-content .effective-date {
  color: #7f8c8d;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

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

.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 4px solid #0088cc;
  padding-left: 15px;
}

.legal-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #34495e;
  margin-top: 25px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin: 15px 0 15px 25px;
  padding: 0;
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal-content a {
  color: #0088cc;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.legal-content a:hover {
  border-bottom-color: #0088cc;
}

.legal-content code {
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: #e74c3c;
}

.legal-content strong {
  font-weight: 600;
  color: #2c3e50;
}

/* Certifications grid for security page */
.certifications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.cert-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #0088cc;
  transition: all 0.3s ease;
}

.cert-card:hover {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.cert-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #0088cc;
}

.cert-card p {
  margin-bottom: 0;
  color: #7f8c8d;
}

/* Footer for legal pages */
.legal-page .footer {
  background: #2c3e50;
  color: white;
  padding: 30px 0;
  margin-top: 60px;
}

.legal-page .footer .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.legal-page .footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.legal-page .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-page .footer-links a:hover {
  color: white;
}

.legal-page .footer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content h3 {
    font-size: 1.2rem;
  }

  .legal-content ul,
  .legal-content ol {
    margin-left: 20px;
  }

  .certifications {
    grid-template-columns: 1fr;
  }

  .legal-page .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
