@font-face {
  font-family: "General Sans";
  src: url("/fonts/GeneralSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("/fonts/GeneralSans-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("/fonts/GeneralSans-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("/fonts/GeneralSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f7fa;
  --card: #fff;
  --ink: #1a1b1f;
  --radius: 12px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "General Sans", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px 20px 24px;
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 564px;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: var(--radius);
  flex-shrink: 0;
  margin-top: 20px;
}

h1 {
  margin: 20px 0 24px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin: 0 0 24px;
}

a {
  color: var(--ink);
}

.signature {
  font-style: italic;
}

.links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links li {
  margin-bottom: 10px;
}

.content {
  min-width: 0;
}

@media (max-width: 600px) {
  .card {
    flex-direction: column;
  }
  .logo {
    margin-top: 0;
  }
}
