:root {
  --blue: #0066cc;
  --blue-dark: #003366;
  --blue-gradient: linear-gradient(135deg, #0066cc 0%, #003366 100%);
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --radius: 16px;
  --container: 1120px;
}

* { box-sizing: border-box; transition: all 0.2s ease-in-out; }

html,
body {
  height: 100%;
}

html {
  background-color: #0066cc;
}

body {
  margin: 0;
  padding-top: 120px;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

#site-menu {
  background-color: #0066cc;
  border: none !important;
  box-shadow: none !important;
}

a {
  text-decoration: none;
  color: var(--blue);
  font-weight: 700;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* HERO */
.hero {
  background: var(--blue-gradient);
  color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-top: -2px;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}

/* CONTENT */
.section {
  padding: 60px 0;
}

.legal-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}

.legal-box h2 {
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 1.4rem;
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--bg);
  padding-bottom: 10px;
}

.legal-box h2:first-of-type {
  margin-top: 0;
}

.legal-box p {
  margin-bottom: 20px;
  color: var(--text-main);
}

.legal-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.legal-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.legal-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  color: var(--text-muted);
  font-weight: 600;
}

.btn-back:hover {
  color: var(--blue);
}

/* FOOTER */
.site-footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 40px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  font-weight: 700;
  opacity: 0.8;
  margin-left: 20px;
  color: #fff;
}

@media (max-width: 768px) {
  .legal-box {
    padding: 30px 20px;
  }

  body {
    padding-top: 100px;
  }
}