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

.legal-content h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.last-updated {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 1rem;
  font-weight: 500;
}

.legal-section p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .legal-content {
    padding: 40px 20px;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-section h2 {
    font-size: 1.3rem;
  }

  /* Remove spine image on mobile */
  .spine-image {
    display: none;
  }
}

/* Common styles for all secondary pages */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 2px solid #007bff;
  color: #007bff;
}

.btn-outline:hover {
  background: #007bff;
  color: #fff;
}

.footer {
  background: #f8f9fa;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-bottom {
  text-align: center;
  color: #666;
}