* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f8fbff;
  color: #0b1f4d;
  line-height: 1.7;
}

/* NAVBAR */

.custom-navbar {
  height: 70px;
  padding: 0;
  background: white;
}

.custom-navbar .container {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  height: 70px;
  display: flex;
  align-items: center;
}

.navbar-logo {
  width: 42px;
  height: auto;
}

.nav-cta {
  background: linear-gradient(135deg, #0b1f4d, #2563eb);
  color: white;
  border: none;
  padding: 9px 17px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.nav-cta:hover {
  color: white;
}

/* POLICY */

.policy-page {
  padding: 80px 0;
}

.policy-container {
  max-width: 950px;
  margin: auto;
  background: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.06);
}

.policy-page h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #0b1f4d;
}

.policy-page h2 {
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 12px;
  color: #0b1f4d;
}

.policy-page p {
  color: #536173;
  font-size: 16px;
}

/* FOOTER */

footer {
  background: white;
  padding: 40px 0;
  text-align: center;
  margin-top: 50px;
}

footer img {
  width: 110px;
  margin-bottom: 12px;
}

footer p {
  color: #536173;
  margin: 0;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .policy-container {
    padding: 30px 22px;
  }

  .policy-page h1 {
    font-size: 32px;
  }

  .policy-page h2 {
    font-size: 21px;
  }

}