:root{
  --primary:#0B1B3A;
  --primary2:#14284F;
  --primary3:#081428;
  --accent:#C9A84C;
  --accent2:#AD8D38;
  --accent-soft:#FBF4E1;
  --light:#F7F6F2;
  --light2:#E8E4DA;
  --mid:#9AA0B4;
  --text:#0B1B3A;
  --muted:#57607A;
  --white:#FFFFFF;
  --radius:12px;
  --radius-lg:20px;
  --shadow:0 4px 24px rgba(11,27,58,.08);
  --shadow-lg:0 16px 48px rgba(11,27,58,.16);
  --transition:.25s ease;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  display:flex;
  flex-direction:column;
  min-height:100vh;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
.container{max-width:1180px;margin:0 auto;padding:0 24px;}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:15px 30px;
  border-radius:8px;
  font-weight:700;
  font-size:.95rem;
  cursor:pointer;
  border:2px solid transparent;
  transition:var(--transition);
  white-space:nowrap;
  font-family:inherit;
}
.btn-primary{background:var(--accent);color:var(--primary);}
.btn-primary:hover{background:var(--accent2);transform:translateY(-2px);box-shadow:var(--shadow-lg);}

/* NAV */
.nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  padding:20px 0;
  transition:var(--transition);
  background:rgba(11,27,58,.97);
  backdrop-filter:blur(8px);
  box-shadow:0 2px 20px rgba(0,0,0,.2);
}
.nav .container{display:flex;align-items:center;justify-content:space-between;gap:20px;}
.logo{display:flex;flex-direction:column;line-height:1.1;}
.logo strong{font-size:1.12rem;font-weight:900;color:var(--white);letter-spacing:-.3px;}
.logo span{font-size:.66rem;font-weight:600;letter-spacing:1.6px;text-transform:uppercase;color:var(--accent);}
.nav-links{display:flex;align-items:center;gap:30px;}
.nav-links a{color:rgba(255,255,255,.85);font-size:.9rem;font-weight:500;transition:var(--transition);}
.nav-links a:hover{color:var(--accent);}

/* LEGAL CONTENT */
.legal-main {
    flex: 1;
    padding: 140px 24px 80px;
}
.legal-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
}
.legal-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent2);
}
.legal-label::before{content:"";width:28px;height:2px;background:var(--accent);}

.legal-box h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--primary);
    margin-bottom: 8px;
}
.update-date {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 40px;
}
.legal-section {
    margin-bottom: 30px;
}
.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.legal-section p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 10px;
}
.legal-link {
    color: var(--accent2);
    font-weight: 600;
    text-decoration: underline;
}
.legal-link:hover {
    color: var(--accent);
}
.legal-actions {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--light2);
}

/* FOOTER */
footer{
  background:var(--primary);
  color:rgba(255,255,255,.6);
  padding:30px 0;
  margin-top:auto;
}
.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px;
  font-size:.8rem;
  align-items:center;
}