/* ===== LEGAL PAGES STYLES ===== */

.legal-content-section {
  min-height: 60vh;
  padding: 60px 0;
  background: #f8f9fa;
}

.legal-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.legal-intro {
  padding-bottom: 2rem;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 2.5rem;
}

.legal-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 1rem;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #27ae60;
  position: relative;
  display: block;
}

.legal-heading::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #f39c12;
}

.legal-subheading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 1.5rem 0 1rem;
  display: block;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 1rem;
}

.legal-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.legal-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: #555555;
  font-size: 1rem;
}

.legal-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: 700;
  font-size: 1.2rem;
  top: 0;
}

.legal-list ul {
  margin-top: 0.5rem;
  margin-left: 1.5rem;
  list-style: none;
}

.legal-list ul li::before {
  content: '◦';
  font-size: 1rem;
}

.legal-list ol {
  counter-reset: item;
  margin-left: 1.5rem;
  list-style: none;
}

.legal-list ol li {
  counter-increment: item;
}

.legal-list ol li::before {
  content: counter(item) ".";
  color: #27ae60;
  font-weight: 600;
}

.contact-info-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #27ae60;
  margin: 1.5rem 0;
}

.contact-info-box p {
  margin-bottom: 0.5rem;
  color: #333333;
  font-size: 1rem;
}

.contact-info-box strong {
  color: #2c3e50;
}

.contact-info-box a {
  color: #27ae60;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-box a:hover {
  color: #219a52;
  text-decoration: underline;
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
}

.legal-footer p {
  font-size: 0.9rem;
  font-style: italic;
  color: #666666;
}

/* Page Header Specific for Legal Pages */
.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #ffffff;
}

.breadcrumb-item.active {
  color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
  content: "›";
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background: #ffffff;
}

.cta-card {
  background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.cta-card .btn-light {
  background: #ffffff;
  color: #27ae60;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-card .btn-light:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.6s ease-in;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .legal-card {
    padding: 2rem 1.5rem;
  }
  
  .legal-heading {
    font-size: 1.5rem;
  }
  
  .legal-subheading {
    font-size: 1.125rem;
  }
  
  .contact-info-box {
    padding: 1.5rem;
  }
  
  .legal-list li {
    padding-left: 1.5rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  .cta-card {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .legal-card {
    padding: 1.5rem 1rem;
  }
  
  .page-header {
    padding: 60px 0 40px;
  }
  
  .page-title {
    font-size: 1.75rem;
  }
}

/* Ensure visibility */
body {
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}