/* Legal Pages (Privacy Policy & Terms) Styles */
.legal-page {
  background-color: #effaf4;
  min-height: 100vh;
  position: relative;
  padding: 120px 85px 100px 85px;
  margin: 0;
  max-width: 1440px;
  margin: 0 auto;
}
.alpha-list {
    padding-left: 2.5em; /* tab space */
}

.alpha-list li {
    padding-left: 0.5em;
}
/* Page Header */
.page-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
}

.breadcrumb {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}

.breadcrumb-link {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 0;
  color: #0a241c;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #2e6b51;
}

.back-arrow {
  flex-shrink: 0;
}

.page-title {
  font-family: 'Nulshock', sans-serif;
  font-weight: bold;
  font-size: 2rem;
  line-height: normal;
  color: #0a241c;
  text-align: left;
  width: 100%;
  margin: 0;
  text-transform: lowercase;
}

/* Content Section */
.legal-content {
  width: 100%;
}

.content-card {
  /* background: #ffffff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.legal-text {
  font-family: 'Encode Sans', sans-serif;
  color: #0a241c;
  line-height: 1.8;
}

.legal-text h2 {
  font-family: 'Nulshock', sans-serif;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #0a241c;
  margin: 0 0 30px 0;
  text-transform: capitalize;
}

.last-updated {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e5e7eb;
}

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

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

.legal-text h3 {
  font-family: 'Nulshock', sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #2e6b51;
  margin: 0 0 20px 0;
}

.legal-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}

.legal-text ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.legal-text ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}

.legal-text ul li:before {
  content: "•";
  position: absolute;
  left: 10px;
  color: #2e6b51;
  font-weight: bold;
  font-size: 20px;
}

.legal-text strong {
  color: #0a241c;
  font-weight: 600;
}

.legal-text a {
  color: #2e6b51;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.legal-text a:hover {
  border-bottom-color: #2e6b51;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .legal-page {
    padding: 100px 60px 80px 60px;
  }

  .content-card {
    /* padding: 50px; */
  }
}

@media screen and (max-width: 768px) {
  .legal-page {
    padding: 80px 30px 60px 30px;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .content-card {
    padding: 40px 30px;
    border-radius: 16px;
  }

  .legal-text h2 {
    font-size: 2rem;
  }

  .legal-text h3 {
    font-size: 1.25rem;
  }

  .legal-text p,
  .legal-text ul li {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .legal-page {
    padding: 70px 20px 50px 20px;
  }

  .page-header {
    margin-bottom: 30px;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .content-card {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .legal-text h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .legal-text h3 {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }

  .legal-text p,
  .legal-text ul li {
    font-size: 14px;
    line-height: 1.7;
  }

  .legal-text ul li {
    padding-left: 25px;
  }

  .legal-text ul li:before {
    left: 8px;
  }

  .last-updated {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .policy-section {
    margin-bottom: 30px;
  }

  .breadcrumb-link {
    font-size: 14px;
  }
}

/* Print Styles */
@media print {
  .legal-page {
    padding: 20px;
    background-color: #ffffff;
  }

  .content-card {
    box-shadow: none;
    padding: 0;
  }

  .breadcrumb {
    display: none;
  }

  .legal-text {
    color: #000000;
  }

  .legal-text h2,
  .legal-text h3,
  .legal-text p,
  .legal-text ul li {
    color: #000000;
  }

  .legal-text a {
    color: #000000;
    text-decoration: underline;
  }
}
