html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #111;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 180px;
  height: auto;
}

.flag {
  width: 28px;
  height: auto;
  opacity: 0.85;
}

.tagline {
  font-size: 1.2rem;
}

.subtext {
  font-size: 0.95rem;
  opacity: 0.7;
}

.page {
  width: 100%;
  max-width: 800px;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ==========================================
   LEGAL / PRIVACY / COOKIES DOCUMENT MODE
========================================== */

.page.document {
  text-align: left;
}

.page.document h1,
.page.document h2,
.page.document p {
  text-align: left;
}

.page.document p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Footer */

footer {
  text-align: center;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 20px;
  opacity: 0.8;
  margin-top: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 6px;
}

footer a {
  color: #0066cc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
