html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Blog post HTML content styling */
.blog-content {
  line-height: 1.8;
}

.blog-content p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #043F51;
}

.blog-content h1 {
  font-size: 2.5rem;
}

.blog-content h2 {
  font-size: 2rem;
}

.blog-content h3 {
  font-size: 1.75rem;
}

.blog-content h4 {
  font-size: 1.5rem;
}

.blog-content h5 {
  font-size: 1.25rem;
}

.blog-content h6 {
  font-size: 1.125rem;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-content ul {
  list-style-type: disc;
}

.blog-content ol {
  list-style-type: decimal;
}

.blog-content li {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.blog-content li > p {
  margin-bottom: 0.5rem;
}

.blog-content a {
  color: #043F51;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}

.blog-content a:hover {
  color: #055468;
}

.blog-content strong,
.blog-content b {
  font-weight: 700;
  color: #043F51;
}

.blog-content em,
.blog-content i {
  font-style: italic;
}

.blog-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid #043F51;
  background-color: #f7f9fb;
  font-style: italic;
  font-size: 1.125rem;
}

.blog-content code {
  background-color: #f4f4f4;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
}

.blog-content pre {
  background-color: #f4f4f4;
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.blog-content pre code {
  background-color: transparent;
  padding: 0;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.blog-content table th,
.blog-content table td {
  border: 1px solid #e2e8f0;
  padding: 0.75rem;
  text-align: left;
}

.blog-content table th {
  background-color: #043F51;
  color: white;
  font-weight: 600;
}

.blog-content table tr:nth-child(even) {
  background-color: #f7f9fb;
}

.blog-content hr {
  margin: 2rem 0;
  border: none;
  border-top: 2px solid #e2e8f0;
}