/* =========================================================
   Privacy Policy Page Styles
   ========================================================= */

/* HERO */
.policy-hero {
  margin: 24px auto 28px;
  padding: 24px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fdfdff 0%, #f3f6ff 100%);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  text-align: center;
  max-width: 1000px;
}
.policy-hero__icon {
  width: 56px; height: 56px; margin: 0 auto 12px;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.policy-hero__icon img {
  width: 100%; height: 100%; object-fit: cover;
}
.policy-hero__title {
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 0 6px;
  color: #1F252E;
  letter-spacing: .3px;
}
.policy-hero__subtitle {
  margin: 0 auto;
  color: #555e6c;
  font-size: 1rem;
  max-width: 800px;
  line-height: 1.55;
}

/* CARD WRAPPER */
.policy-card.card {
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto 40px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.policy-card.card .card-body {
  padding: 28px 32px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #2f343f;
}

/* SECTIONS */
.policy-section + .policy-section {
  margin-top: 28px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: #0f172a;
  position: relative;
}
.policy-section h2::after {
  content: "";
  display: block;
  width: 40px; height: 3px;
  background: #4f46e5;
  border-radius: 2px;
  margin-top: 6px;
}
.policy-section p,
.policy-section ul {
  margin: 0 0 12px;
}
.policy-section ul {
  padding-left: 1.2rem;
}
.policy-section li {
  margin: .4rem 0;
}

/* LINKS / CODE */
.policy-card a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
}
.policy-card a:hover {
  text-decoration: underline;
}
.policy-card code {
  background: #f6f8ff;
  border: 1px solid #e6e9ff;
  padding: .2rem .45rem;
  border-radius: 6px;
  font-size: .92rem;
}

/* TABLES */
.policy-card .table {
  margin: 12px 0 16px;
  font-size: .95rem;
  border-color: rgba(0,0,0,.08);
}
.policy-card .table th,
.policy-card .table td {
  border-color: rgba(0,0,0,.08);
  padding: .6rem .75rem;
}
.policy-card .table thead th {
  background: #f3f6ff;
  color: #1F252E;
  font-weight: 700;
}
.policy-card .table tbody tr:nth-child(even) {
  background: #fafbff;
}
.policy-card .table-responsive {
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 10px;
  overflow: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .policy-card.card .card-body {
    padding: 20px;
    font-size: .98rem;
    line-height: 1.55;
  }
  .policy-section h2 {
    font-size: 1.15rem;
  }
  .policy-hero {
    padding: 18px 20px;
  }
  .policy-hero__title {
    font-size: 1.35rem;
  }
  .policy-hero__subtitle {
    font-size: .95rem;
  }
}