@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap');

body, h1,h2,h3,p,i,a,h4, li{
   font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
li{
   font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

 font-weight: 500;
}

:root {
  --navy: #000080;
  --navy-dark: #111c36;
  --navy-mid: #243059;
  --blue: #2563eb;
  --blue-light: #1b6eff;
  --white: #ffffff;
  --gray-bg: #f4f6fb;
  --border: #dde3f0;
  --text: #000000;
  --muted: #020202;
  --accent: #e8f0fe;
}

.hero2 {
  background: var(--navy);
  padding: 5rem 2rem 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeDown 0.7s ease both;
}
.hero2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(37, 99, 235, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 30%,
      rgba(96, 165, 250, 0.13) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.hero-logo {
  font-size: 1rem;
  font-weight: 800;
  color: rgb(255, 255, 255);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  animation: fadeUp 0.6s ease 0s both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(41, 41, 41, 0.051);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.859);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-badge i {
  color: #1b6eff;
  font-size: 0.7rem;
}
.hero2 h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 0.8rem;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero2 p {
  color: rgb(255, 255, 255);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  animation: fadeUp 0.7s ease 0.4s both;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}
.hero-meta-item i {
  color: #1b6eff;
}

.wave {
  display: block;
  background: var(--navy);
  line-height: 0;
}
.wave svg {
  display: block;
  width: 100%;
}

.layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.toc {
  position: sticky;
  top: 24px;
  background: var(--white);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 2px 20px rgba(26, 39, 68, 0.07);
  animation: fadeUp 0.8s ease 0.2s both;
}
.toc-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.toc ul {
  list-style: none;
}
.toc ul li {
  margin-bottom: 0.15rem;
}
.toc ul li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.81rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.42rem 0.6rem;
  border-radius: 7px;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  border-left: 2px solid transparent;
}
.toc ul li a i {
  font-size: 0.68rem;
  width: 13px;
  text-align: center;
  flex-shrink: 0;
}
.toc ul li a:hover,
.toc ul li a.active {
  background: var(--accent);
  color: var(--blue);
  border-left-color: var(--blue);
}
.toc-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}
.toc-update {
  font-size: 0.73rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.toc-update i {
  color: var(--blue);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.policy-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem 2.2rem;
  box-shadow: 0 2px 20px rgba(26, 39, 68, 0.06);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.25s;
}
.policy-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.policy-card:hover {
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.policy-card:hover .card-icon {
  background: var(--blue);
  transform: rotate(-5deg) scale(1.08);
}
.card-icon i {
  font-size: 1.1rem;
  color: var(--blue);
  transition: color 0.2s;
}
.policy-card:hover .card-icon i {
  color: var(--white);
}
.card-header h2 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
}
.card-header p {
  font-size: 0.77rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.policy-card p {
  font-size:15px;
  color: #000000;
  line-height: 1.85;
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.8rem 0;
}
.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.865rem;
  color: #070707;
  line-height: 1.65;
}
.policy-list li i {
  color: var(--blue);
  font-size: 0.72rem;
  margin-top: 0.32rem;
  flex-shrink: 0;
}

.highlight-box {
  background: var(--accent);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 0.9rem 1.1rem;
  margin: 0.9rem 0;
  font-size: 0.845rem;
  color: var(--navy);
  line-height: 1.7;
}
.highlight-box strong {
  color: var(--blue);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-top: 0.9rem;
  overflow: hidden;
  border-radius: 10px;
}
.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.77rem;
  letter-spacing: 0.3px;
}
.data-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  color: #4a5568;
  vertical-align: top;
  line-height: 1.5;
}
.data-table tr:last-child td {
  border-bottom: none;
}
.data-table tr:nth-child(even) td {
  background: #f9fafc;
}

.badge {
  display: inline-block;
  padding: 0.18rem 0.6rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
}
.badge-blue {
  background: #dbeafe;
  color: #1b6eff;
}
.badge-green {
  background: #dcfce7;
  color: #000080;
}
.badge-orange {
  background: #ffedd5;
  color: #c2410c;
}

.consent-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 2rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.consent-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.consent-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.consent-card p {
  font-size: 0.90rem;
  color: rgba(255, 255, 255, 0.97);
  line-height: 1.6;
}
.consent-btns {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-accept {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-accept:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}
.btn-decline {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-decline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.contact-strip {
  background: var(--white);
  border-radius: 14px;
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 2px 20px rgba(26, 39, 68, 0.06);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.contact-strip.visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-strip-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-strip-icon i {
  font-size: 1.2rem;
  color: var(--blue);
}
.contact-strip-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.contact-strip-text p {
  font-size: 0.81rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.contact-strip a {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.15s;
}
.contact-strip a:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

#back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(26, 39, 68, 0.25);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.2s,
    background 0.2s;
  z-index: 200;
}
#back-top.show {
  opacity: 1;
  pointer-events: all;
}
#back-top:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

footer {
  background: var(--navy-dark);
  padding: 2.5rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand h3 span {
  color: var(--blue-light);
}
.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.9rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-bottom {
  max-width: 1100px;
  margin: 1.2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--white);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .layout {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .policy-card,
  .consent-card,
  .contact-strip {
    padding: 1.4rem 1.2rem;
  }
  .contact-strip a {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero2 {
    padding: 3.5rem 1.2rem 4rem;
  }
  .data-table {
    font-size: 0.74rem;
  }
  .data-table td,
  .data-table th {
    padding: 0.45rem 0.6rem;
  }
}
