/* styles.css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  user-select: none;
}

body {
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  height: 70px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
    background: url('/LogoSmall.svg') center/cover no-repeat;
    width: 100px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #1e1b4b;
  font-style: italic;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a.active, .nav-links a:hover {
  color: #111827;
  font-weight: 600;
  border-bottom: 2px solid #7c3aed;
  padding-bottom: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-link {
  text-decoration: none;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
}

.btn-primary {
  text-decoration: none;
  background: linear-gradient(130deg, #7a28ce 20%, #d02881, #f46725 90%);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

/* Main Legal Content */
.content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.breadcrumbs {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 20px;
}

.page-title {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
}

.last-updated {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 40px;
}

.policy-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f3f4f6;
}

.policy-section.head {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.policy-section p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.card {
    background-color: #f7f7f7;
    padding: 20px 16px;
    border-radius: 6px;
    border: 1px solid #ebebeb;
    margin-bottom: 10px;
}

.cards-grid.ul {
    grid-template-columns: repeat(1, 1fr);
}

.card.ul {
    padding: 20px 40px;
    font-size: 13px;
}

.card h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

/* Footer */
.footer {
  background-color: #ff6b00;
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 13px;
  color: #fff0e6;
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand .logo-text {
  color: white;
}

.footer-column h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #fff0e6;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
}

.footer-column a.active {
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 11px;
  color: #fff0e6;
}