/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  background-color: #f7f7f5;
  color: #111;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* LAYOUT */
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 20px 60px;
}

/* SECTIONS */
section {
  margin-bottom: 48px;
}

/* STATEMENT */
.statement h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.4;
}

/* TEXT */
p {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* BOUNDARIES */
.boundaries p {
  margin-bottom: 8px;
}

.boundaries .closing-line {
  margin-top: 16px;
  font-style: italic;
}

/* LINKS */
a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  opacity: 0.75;
}

/* ARTIFACT */
.artifact a {
  font-weight: 500;
}

/* CONTACT */
.contact a {
  font-weight: 500;
}

/* FOOTER */
footer {
  max-width: 700px;
  margin: 40px auto 60px;
  padding: 0 20px;
  color: #555;
  font-size: 0.85rem;
}
/* LANGUAGE SWITCH */
.language-switch {
  text-align: right;
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.language-switch a {
  text-decoration: none;
  color: #555;
}

.language-switch a:hover {
  text-decoration: underline;
}

