/* Reset a few defaults */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body & typography */
body {
  font-family: -apple-system, "Segoe UI", "Noto Sans", "Roboto", sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background: #f8f8f8;
  padding-bottom: 2rem;
}

/* Header */
.site-header {
  background: #0a4c86;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.site-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.6rem;
}

.site-header .tagline {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Navigation */
.site-nav {
  background: #7de19a;
  display: flex;
  align-items: center;
}

.site-nav ul {
  display: flex;
  flex: 1;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}

.site-nav a {
  display: block;
  padding: 1rem;
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
}

.site-nav a:hover {
  background: #63b37a;
}

.language-switcher {
  display: flex;
  gap: 0.25rem;
  margin-right: 2rem;
}

.language-switcher a {
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(10, 76, 134, 0.4);
  border-radius: 999px;
  color: #2c2c2c;
}

/* Main content */
.site-main {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  border-left: 4px solid #7de19a;
  padding-left: 0.6rem;
  margin-bottom: 0.6rem;
  color: #0a4c86;
}

.section p {
  margin-top: 0.6rem;
}

.section ul {
  margin-top: 0.6rem;
  padding-left: 2.5rem;
}

.section .site-logo {
  float: right;
  margin: 0.25rem;
  position: relative;
}

.section .site-logo img {
  display: block;
}

.text-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.text-image img {
  max-width: 300px;
}

.keypub {
  background: #0a4c86;
  color: #fff;
  border-radius: 999px;
  padding: 0.1rem 0.4rem;
  font-size: 0.9rem;
  margin-left: 0.6rem;
}

/* Footer */
.site-footer {
  background: #e0e0e0;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
  margin-top: 3rem;
}

.site-footer img {
  width: 20%;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav a {
    text-align: center;
    padding: 0.25rem;
  }
}

/*# sourceMappingURL=style.css.map */