:root {
  --bg-color: #000000;
  --text-primary: #f9f9fa;
  --text-secondary: #49C2C6;
  --link-color: #49C2C6;
  --footer-bg: #000000;
  --font-main: "Montserrat", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.logo {
  max-width: 250px;
  margin-bottom: 2rem;
  height: auto;
}

h1 {
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

p.subtitle {
  color: var(--text-secondary);
  font-size: 1.4rem;
  max-width: 600px;
  line-height: 1.6;
}

a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

a:hover { opacity: 0.8; }

.site-footer {
  background-color: var(--footer-bg);
  padding: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links a { color: var(--text-secondary); margin: 0 10px; font-weight: 400; }
.separator { opacity: 0.3; }
.copyright { margin-top: 10px; opacity: 0.6; }

/* Fixed Legal Content Styling */
.legal-content {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.legal-content h1 { margin-top: 0; }
.legal-content h2 { margin-top: 2rem; }
