@font-face {
    font-family: 'Mon1';
    src: url("/fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
     font-family: 'Mon1', Helvetica, sans-serif !important;
}

body {
  background: linear-gradient(180deg, #000000 0%, #03385B 100%);
  color: #1a1a1a;
  line-height: 1.7;
}

.legal-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.updated {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
  font-size: 15px;
}

ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 8px;
}

a {
  color: #0066ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.back-home-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;

  padding: 5px 5px;
  border-radius: 999px;

  background: linear-gradient(135deg, #000000, #03385B);
  color: #ffffff;

  font-size: 10px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.back-home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 60, 255, 0.35);
  background: linear-gradient(135deg, #03385B, #03385B);
}
