/* Legal Pages Styles */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
}

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

/* Navigation Bar */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  color: #1f2937;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3b82f6;
}

/* Legal Hero Section */
.legal-hero {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.legal-hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.legal-hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Legal Content Section */
.legal-content {
  padding: 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-top: 50px;
  margin-bottom: 20px;
}

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

.legal-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #374151;
  margin-top: 35px;
  margin-bottom: 15px;
}

.legal-content p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

.legal-content li {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.legal-content a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

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

.last-updated {
  background: #f3f4f6;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 40px;
  border-left: 4px solid #3b82f6;
}

.info-box {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: 20px 24px;
  margin: 30px 0;
  border-radius: 4px;
}

.info-box p {
  color: #1e40af;
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.6;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 30px;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 60px 0;
  }

  .legal-hero-title {
    font-size: 36px;
  }

  .legal-hero-subtitle {
    font-size: 16px;
  }

  .legal-content {
    padding: 50px 0;
  }

  .legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
  }

  .legal-content h3 {
    font-size: 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
