/* ===========================================================
   COLOR VARIABLES
   =========================================================== */
:root {
  --primary: #7c9fee;
  --primary-hover: #4f7ce0;
  --secondary-text: #344b42;
  --primary-text: #ffffff;
  --text-dark: #1f2937;
  --text-light: #6c757d;
  --background: linear-gradient(180deg, #eef4f2 0%, #f8f9fa 100%);
  --container-bg: #ffffff;
  --border: #e5e7eb;
}

/* ===========================================================
   GLOBAL BASE
   =========================================================== */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  background: var(--background);
  background-attachment: fixed; /* verhindert Wiederholen */
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text-dark);
}

/* Entfernt das problematische Flexbox-Layout */
body {
  padding: 2rem 0;
  display: block;
}

/* Links */
a { 
  color: var(--primary); 
  text-decoration: none; 
}
a:hover { 
  color: var(--primary-hover); 
  text-decoration: underline; 
}

/* ===========================================================
   PAGE CONTAINER (matching chat look)
   =========================================================== */
.container {
  max-width: 820px;
  background: var(--container-bg);
  padding: 2rem 2.5rem;
  border-radius: 24px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ===========================================================
   TYPOGRAPHY
   =========================================================== */
h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p, li {
  line-height: 1.55;
  font-size: 1rem;
  color: var(--text-dark);
}

ul {
  padding-left: 1.2rem;
}

/* Footer text */
footer p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 768px) {
  body {
    padding: 0;
  }
  .container {
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 1.5rem 1.25rem;
  }
}
