/* Polxan – minimal, executive polish */

/* Base reset */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 48px 20px;
  background: #ffffff;
  color: #111111;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* Content width */
header,
section,
footer {
  max-width: 680px;
  margin: 0 auto 32px auto;
}

/* Headings */
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
}

/* Subhead / tagline */
header p {
  margin-top: 0;
  font-size: 1.05rem;
  color: #333333;
}

/* Paragraphs */
p {
  margin-top: 0;
  margin-bottom: 16px;
}

/* Lists */
ul {
  padding-left: 20px;
  margin-top: 8px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

/* Footer */
footer {
  margin-top: 56px;
  font-size: 0.95rem;
  color: #444444;
}

/* Links */
a {
  color: #1a4fd8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: block;
}
