/* Legal Pages Styling */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica", "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Legal Hero Section */
.legal-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  text-align: center;
}

.legal-hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #000;
  letter-spacing: -0.02em;
}

.legal-hero-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-top: 0.5rem;
}

/* Legal Content Section */
.legal-content-section {
  padding: 80px 0;
  background: #fff;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #000;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

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

.legal-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

.legal-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.25rem;
}

.legal-content ul,
.legal-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 0.75rem;
}

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

.legal-content a {
  color: #d946ef;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: #c026d3;
  text-decoration: underline;
}

.highlight-box {
  background: #f9fafb;
  border-left: 4px solid #d946ef;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.highlight-box p {
  margin-bottom: 0;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .legal-hero {
    padding: 120px 0 50px;
  }

  .legal-hero-title {
    font-size: 2.5rem;
  }

  .legal-hero-subtitle {
    font-size: 1rem;
  }

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

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

  .legal-content p,
  .legal-content li {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .legal-hero {
    padding: 110px 0 40px;
  }

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

  .legal-hero-subtitle {
    font-size: 0.95rem;
  }

  .legal-container {
    padding: 0 1.5rem;
  }

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

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

  .legal-content-section {
    padding: 60px 0;
  }

  .legal-content ul,
  .legal-content ol {
    margin-left: 1.5rem;
  }
}
