/* Global styles for Creo AI legal & support pages */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #151515;
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 720px;
  padding: 32px 24px 40px;
}

.header {
  margin-bottom: 24px;
}

.app-name {
  margin: 0 0 4px;
  font-size: 28px;
  letter-spacing: 0.03em;
}

.subtitle {
  margin: 0;
  font-size: 14px;
  color: #bbbbbb;
}

.content {
  margin-top: 24px;
  line-height: 1.6;
  font-size: 15px;
  color: #dddddd;
}

a {
  color: #4da3ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.placeholder {
  opacity: 0.85;
  font-style: italic;
}


