/* Legal Pages Styling */

.legal-page {
  padding: 80px 0;
  background: #f9f9f9;
  min-height: calc(100vh - 400px);
}

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

.legal-date {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.legal-content {
  background: #fff;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

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

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #6b46c1;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.legal-section ul {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-section li {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
}

.legal-section a {
  color: #6b46c1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: #4a2d8f;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .legal-page {
    padding: 60px 0;
  }

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

  .legal-content {
    padding: 30px 20px;
  }

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

  .legal-section p,
  .legal-section li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .legal-title {
    font-size: 1.75rem;
  }

  .legal-content {
    padding: 25px 15px;
  }

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