body {
  background: #ffffff;
  color: #000000;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 350;
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e1e4e8;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 60px;
}

.nav-brand a {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
}
.nav-brand a:hover {
  color: #007acc;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0px 20px 60px 20px;
}

.content {
  width: 100%;
}
.content .social-links {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.content .social-link {
  display: flex;
  align-items: center;
  color: #666;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}
.content .social-link:hover {
  color: #007acc;
}
.content .social-link svg {
  width: 30px;
  height: 30px;
}

.content .flex-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.content .image-section {
  width: 300px;
  margin-bottom: 12px;
}

.content .image-container {
  border-radius: 12px;
  margin-bottom: 8px;
}
.content .image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

h1 {
  font-size: 2rem;
  border-bottom: 1px solid #e1e4e8;
  padding-bottom: 8px;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p:has(+ ul) {
  margin-bottom: 0;
}

p + ul {
  margin-top: 0;
}

a {
  color: #4a9eff;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #007acc;
}

.nav-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: #007acc;
}

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