/* Minimalist styling for legal pages */
.legal-container {
  width: 100%;
  max-width: 800px;
  margin: 120px auto 80px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.legal-header {
  text-align: center;
  margin-bottom: 50px;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.legal-subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 40px;
  margin-bottom: 15px;
}

.legal-content p {
  margin-bottom: 20px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

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

.legal-content a {
  color: #1e8fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .legal-container {
    margin: 100px 20px 60px 20px;
    padding: 30px 20px;
    width: auto;
  }

  .legal-title {
    font-size: 2rem;
  }

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