/* Legal Pages Stylesheet - save as static/css/legal-pages.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #0f1419;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
}

.header {
  background: #1a1f2a;
  padding: 20px 0;
  border-bottom: 1px solid #2a2f3a;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 60px;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.page-subtitle {
  color: #8b9bb4;
  margin-bottom: 40px;
  font-size: 16px;
}

.content {
  background: #1a1f2a;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #2a2f3a;
}

.content h2 {
  color: #00B7FF;
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 32px;
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 24px;
}

.content p {
  color: #d1d5db;
  margin-bottom: 16px;
}

.content ul {
  color: #d1d5db;
  margin-bottom: 16px;
  padding-left: 24px;
}

.content li {
  margin-bottom: 8px;
}

.highlight {
  color: #00B7FF;
  font-weight: 600;
  text-decoration: none;
}

.highlight:hover {
  text-decoration: underline;
}

.contact-info {
  background: rgba(0, 183, 255, 0.1);
  border: 1px solid rgba(0, 183, 255, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-top: 32px;
}

.contact-info h3 {
  color: #00B7FF;
  margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .container {
    padding: 20px 15px;
  }

  .page-title {
    font-size: 24px;
  }

  .content {
    padding: 20px;
  }

  .content h2 {
    font-size: 20px;
  }

  .content h3 {
    font-size: 16px;
  }
}
