/* About Page Styles */

body {
  font-family: Arial, Helvetica, sans-serif !important;
}

.about-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
}

/* Header - Using default styles from main.css */
/* Override header to have dark text on light background */
.about-page .premium-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-page .logo-container {
  text-decoration: none !important;
}

.about-page .logo-container:hover {
  text-decoration: none !important;
}

.about-page .logo-icon {
  color: #059669;
}

.about-page .logo-text {
  color: #059669;
}

.about-page .logo-text-accent {
  color: #000000;
  -webkit-text-fill-color: #000000;
}

.about-page .nav-item {
  color: #4b5563;
  text-decoration: none !important;
}

.about-page .nav-item:hover {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  text-decoration: none !important;
}

.about-page .signin-btn {
  color: #4b5563;
  text-decoration: none !important;
}

.about-page .signin-btn:hover {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  text-decoration: none !important;
}

.about-page .cta-btn {
  text-decoration: none !important;
}

.about-page .cta-btn:hover {
  text-decoration: none !important;
}

/* Hero Section */
.about-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-orb 4s ease-in-out infinite;
}

.about-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.about-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

.about-hero .hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-hero .hero-description {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Content Section */
.about-content {
  flex: 1;
  padding: 4rem 0;
}

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

/* Section Styles */
.about-section {
  margin-bottom: 4rem;
}

.about-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.about-section p {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-section ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.about-section ul li {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.about-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.about-section ul li strong {
  color: #111827;
  font-weight: 600;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.1);
  border-color: #059669;
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #059669;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 600;
}

/* Legal Documents Section */
.legal-documents-section {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 3rem;
  margin-top: 4rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.legal-documents-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  text-align: center;
}

.legal-documents-section p {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.legal-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: #059669;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.legal-link:hover {
  background: #f0fdf4;
  border-color: #059669;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.12);
}

.legal-link i {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #059669;
}

/* Contact Section */
.contact-section {
  margin-top: 4rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.contact-section p {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.contact-email {
  color: #059669 !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
}

.contact-email:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icons a {
  color: #059669;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #047857;
  transform: translateY(-2px);
}

/* Footer Overrides */
.about-page .app-footer {
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero .hero-title {
    font-size: 2rem;
  }

  .about-hero .hero-description {
    font-size: 1rem;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .about-section p,
  .about-section ul li {
    font-size: 1rem;
  }

  .legal-documents-section {
    padding: 2rem 1.5rem;
  }

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

  .legal-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .legal-link {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .legal-link i {
    font-size: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@keyframes pulse-orb {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1.05);
  }
}
