  .blog-post {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #222;
    background-color: #fff;
    padding: 20px;
    max-width: 800px;
    margin: auto;
  }

  .blog-post h1 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    line-height: 1.3;
    color: #333;
    margin-top: 0;
    margin-bottom: 0.7em;
    text-align: center; 
  }

  .blog-post h2 {
    font-family: 'Georgia', serif;
    font-size: 26px;
    line-height: 1.4;
    color: #333;
    margin-top: 1.8em;
    margin-bottom: 0.6em;
  }

  .blog-post h3 {
    font-family: 'Georgia', serif;
    font-size: 22px;
    line-height: 1.4;
    color: #333;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
  }

  .blog-post p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 1.1em;
  }

  .blog-post ul,
  .blog-post ol {
    font-size: 18px;
    line-height: 1.7;
    padding-left: 1.4em;
    margin-bottom: 1em;
  }

  .blog-post li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0.5em;
  }

  .blog-post strong {
    font-size: 18px;
    font-weight: 600;
    color: #000;
  }

  .blog-post em {
    font-size: 18px;
    font-style: italic;
    color: #555;
  }

  .blog-post a {
    font-size: 18px;
    color: #007acc;
    text-decoration: none;
  }

  .blog-post a:hover {
    text-decoration: underline;
  }

  .blog-post table {
    font-size: 16px;
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
  }

  .blog-post table th,
  .blog-post table td {
    font-size: 16px;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
  }

  .blog-post table thead {
    background-color: #f5f5f5;
  }

  /* Responsive tweaks */
  @media (max-width: 600px) {
    .blog-post {
      font-size: 16px;
      padding: 15px;
    }

    .blog-post h1 {
      font-size: 26px;
    }

    .blog-post h2 {
      font-size: 22px;
    }

    .blog-post h3 {
      font-size: 20px;
    }

    .blog-post p,
    .blog-post ul,
    .blog-post ol,
    .blog-post li,
    .blog-post a,
    .blog-post em,
    .blog-post strong {
      font-size: 16px;
    }

    .blog-post table,
    .blog-post table th,
    .blog-post table td {
      font-size: 15px;
    }
  }